PHP获取类中常量,属性,及方法列表的方法
作者:bea
代码如下: $r = new ReflectionClass($this); Zend_Debug::dump($r->getConstants(), "Constants"); Zend_Debug::dump($r->getProperties(), "Properties"); Zend_Debug::dump($r->getMethods(), "Methods");
代码如下:
$r = new ReflectionClass($this);
Zend_Debug::dump($r->getConstants(), "Constants");
Zend_Debug::dump($r->getProperties(), "Properties");
Zend_Debug::dump($r->getMethods(), "Methods");
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- PHP mb_convert_encoding 获取字符串编码类型实现代码
- php mssql 分页SQL语句优化 持续影响
- 配置Apache2.2+PHP5+CakePHP1.2+MySQL5运行环境
- mysql_fetch_row,mysql_fetch_array,mysql_fetch_assoc的区别
- PHP 危险函数解释 分析
- php反弹shell实现代码
- 将数组写入txt文件 var_export
- php 保留小数点
- PHP 中执行排序与 MySQL 中排序
- 一个php导出oracle库的php代码
- php一句话cmdshell新型 (非一句话木马)
- 对squid中refresh_pattern的一些理解和建议
- PHP 加密与解密的斗争
- AspNetAjaxPager,Asp.Net通用无刷新Ajax分页控件,支持多样式多数据绑定
- php error_log 函数的使用
- PHP Document 代码注释规范
- php pcntl_fork和pcntl_fork 的用法
- sourcesafe管理phpproj文件的补充说明(downmoon)
- php 动态执行带有参数的类方法