Php/docs/class.reflectionfunction

来自菜鸟教程
跳转至:导航、​搜索

(PHP 5, PHP 7)

简介

ReflectionFunction 类报告了一个函数的有关信息。


类摘要


ReflectionFunction extends ReflectionFunctionAbstract implements Reflector {

/* 常量 */

const integer IS_DEPRECATED = 262144

/* 属性 */

public $name

/* 方法 */

public __construct ( mixed $name )

public static export ( string $name [, string $return ] ) : string

public getClosure ( ) : Closure

public invoke ( mixed ...$args ) : mixed

public invokeArgs ( array $args ) : mixed

public isDisabled ( ) : bool

public __toString ( ) : string

/* 继承的方法 */

final private ReflectionFunctionAbstract::__clone ( ) : void

abstract public ReflectionFunctionAbstract::__toString ( ) : void

}

属性

name
函数的名称。只读,并在尝试赋值的时候会抛出 ReflectionException


预定义常量

ReflectionFunction 修饰符

ReflectionFunction::IS_DEPRECATED
指示了不建议使用的函数。


Table of Contents