PHP ReflectionClass::export 反射函数
-
定义和用法
ReflectionClass::export - 导出一个类 -
版本支持
PHP4 PHP5 PHP7 不支持 支持 支持 -
语法
ReflectionClass::export( mixed $argument [, bool $return = false ] )
ReflectionClass::export() 导出一个反射后的类。 -
参数
参数 必需的 描述 argument 是 导出的反射。 return 是 设为 TRUE 时返回导出结果,设为 FALSE(默认值)则忽略返回。 -
返回值
如果参数 return 设为 TRUE,导出结果将作为字符串返回,否则返回 NULL。 -
示例
尝试一下class Apple { public $var1; public $var2 = 'Orange'; public function type() { return 'Apple'; } } ReflectionClass::export('Apple');
-
相关页面
ReflectionClass::getName() - 获取类名