リフレクション
PHP Manual

ReflectionFunction クラス

導入

ReflectionFunction クラスは 関数についての情報を報告します。

親クラスであるReflectionFunctionAbstract にも、 invoke() および invokeArgs()export()isDisabled() を除くすべてのメソッドが存在します。

クラス概要

ReflectionFunction extends ReflectionFunctionAbstract implements Reflector {
/* 定数 */
const integer ReflectionFunction::IS_DEPRECATED = 262144 ;
/* プロパティ */
public $name ;
/* メソッド */
__construct ( mixed $name )
public static string export ( string $name [, string $return ] )
public mixed invoke ([ mixed $parameter [, mixed $... ]] )
public mixed invokeArgs ( array $args )
public bool isDisabled ( void )
public string __toString ( void )
/* 継承したメソッド */
final private void ReflectionFunctionAbstract::__clone ( void )
public ReflectionExtension ReflectionFunctionAbstract::getExtension ( void )
public string ReflectionFunctionAbstract::getName ( void )
abstract public void ReflectionFunctionAbstract::__toString ( void )
}

プロパティ

name

Prop description

定義済み定数

ReflectionFunction のノード型

ReflectionFunction::IS_DEPRECATED

Description here...

目次


リフレクション
PHP Manual