PHP ReflectionFunction::export 反射函数

  • 定义和用法

    ReflectionFunction::export - 导出函数。
  • 版本支持

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

    ReflectionFunction::export(  string $name [, string $return ] )
    ReflectionFunction::export() 导出一个函数反射。
  • 参数

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

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

    function title($title, $name)
    {
            return sprintf("%s. %s\r\n", $title, $name);
    }
    
    echo ReflectionFunction::export('title',true);
    
    尝试一下
  • 相关页面

    ReflectionFunction::invoke() - 调用函数