getProperties(), "Prop ..."/> getProperties(), "Prop ...">
PHP获取类中常量,属性,及方法列表的方法
Php代码
$r = new ReflectionClass($this); Zend_Debug::dump($r->getConstants(), "Constants"); Zend_Debug::dump($r->getProperties(), "Properties"); Zend_Debug::dump($r->getMethods(), "Methods");
以上就是PHP获取类中常量,属性,及方法列表的方法的内容,更多相关内容请关注PHP中文网(www.php.cn)!