PHP获取类中常量,属性,及方法列表的方法

2015-01-24信息快讯网

PHP获取类中常量,属性,及方法列表的方法

$r = new ReflectionClass($this); 
Zend_Debug::dump($r->getConstants(), "Constants"); 
Zend_Debug::dump($r->getProperties(), "Properties"); 
Zend_Debug::dump($r->getMethods(), "Methods"); 
©2014-2024 dbsqp.com