ReflectionClass::hasConstant
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
ReflectionClass::hasConstant — 定数が定義されているかどうかを調べる
パラメータ
name
-
調べたい定数の名前。
例
例1 ReflectionClass::hasConstant() の例
<?php
class Foo {
const c1 = 1;
}
$class = new ReflectionClass("Foo");
var_dump($class->hasConstant("c1"));
var_dump($class->hasConstant("c2"));
?>
上の例の出力は、 たとえば以下のようになります。
bool(true) bool(false)
参考
- ReflectionClass::hasMethod() - メソッドが定義されているかどうかを調べる
- ReflectionClass::hasProperty() - プロパティが定義されているかどうかを調べる
+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