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');
    
    尝试一下
  • 相关页面