PHP Reflection::export 反射函数

  • 定义和用法

    Reflection::export - 导出
  • 版本支持

    PHP4 PHP5 PHP7
    不支持 支持 支持
  • 语法

    Reflection::export( Reflector $reflector [, bool $return = false ] )
    Reflection::export() 导出一个反射(reflection)。
  • 参数

    参数 必需的 描述
    reflector 导出的反射。
    return 设为 TRUE 时返回导出结果,设为 FALSE(默认值)则忽略返回。
  • 返回值

    如果参数 return 设为 TRUE,导出结果将作为 字符串 返回,否则返回 NULL。
  • 示例

    class TestReflector implements Reflector{
    
        public static function export () {
        }
        public function  __toString () {
            return 'test';
        }
    
    }
    
    $reflector = new TestReflector();
    
    $export = Reflection::export( $reflector ,true);
    
    var_dump($export);  
    
    尝试一下
  • 相关页面

    Reflection::getModifierNames() - 获取修饰符的名称