| | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
ReflectionClass::getReflectionConstants(PHP 7 >= 7.1.0) ReflectionClass::getReflectionConstants — Gets class constants 説明
public array ReflectionClass::getReflectionConstants
( void
)
Retrieves reflected constants. パラメータこの関数にはパラメータはありません。 返り値An array of ReflectionClassConstant objects. 例例1 Basic ReflectionClass::getReflectionConstants() example
<?php上の例の出力は、 たとえば以下のようになります。
FOO
BAR
BAZ
array(3) {
[0]=>
object(ReflectionClassConstant)#3 (2) {
["name"]=>
string(3) "FOO"
["class"]=>
string(3) "Foo"
}
[1]=>
object(ReflectionClassConstant)#4 (2) {
["name"]=>
string(3) "BAR"
["class"]=>
string(3) "Foo"
}
[2]=>
object(ReflectionClassConstant)#5 (2) {
["name"]=>
string(3) "BAZ"
["class"]=>
string(3) "Foo"
}
}
参考
|
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「ReflectionClass::getReflectionConstants - Gets class constants」をGoogle検索
|