PHP获取类中常量,属性,及方法列表的方法
程序员文章站
2022-04-13 21:05:46
...
PHP获取类中常量,属性,及方法列表的方法
Php代码
$r = new ReflectionClass($this); Zend_Debug::dump($r->getConstants(), "Constants"); Zend_Debug::dump($r->getProperties(), "Properties"); Zend_Debug::dump($r->getMethods(), "Methods");