enum_exists
(PHP 8 >= 8.1.0)
enum_exists — 列挙型が定義されているかを調べる
例
例1 enum_exists() の例
<?php
// Check that the enum exists before trying to use it
if (enum_exists(Suit::class)) {
$myclass = Suit::Hearts;
}
?>
参考
- function_exists() - 指定した関数が定義されている場合に true を返す
- class_exists() - クラスが定義済みかどうかを確認する
- interface_exists() - インターフェイスが宣言されているかどうかを確認する
- get_declared_classes() - 定義済のクラスの名前を配列として返す
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google