Do You PHP はてブロ

Do You PHPはてなからはてブロに移動しました

2008-01-05から1日間の記事一覧

PHPでクラス定数の一覧を取得する

PHP

PHP5限定ですが、Reflectionでどうでしょうか? get_defined_constants()やget_class_vars()などでは取得できないので、、無理っぽい。以下、サンプルです。 $ cat Reflection_getConstants.php getConstants()); $class = new ReflectionClass('DateTime…