リフレクション
PHP Manual

ReflectionMethod クラス

(PHP 5)

導入

ReflectionMethod クラスは メソッドについての情報を報告します。

クラス概要

ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
/* 定数 */
const integer IS_STATIC = 1 ;
const integer IS_PUBLIC = 256 ;
const integer IS_PROTECTED = 512 ;
const integer IS_PRIVATE = 1024 ;
const integer IS_ABSTRACT = 2 ;
const integer IS_FINAL = 4 ;
/* プロパティ */
public $name ;
public $class ;
/* メソッド */
public __construct ( mixed $class , string $name )
public static string export ( string $class , string $name [, bool $return = false ] )
public Closure getClosure ( string $object )
public ReflectionClass getDeclaringClass ( void )
public int getModifiers ( void )
public ReflectionMethod getPrototype ( void )
public mixed invoke ( object $object [, mixed $parameter [, mixed $... ]] )
public mixed invokeArgs ( object $object , array $args )
public bool isAbstract ( void )
public bool isConstructor ( void )
public bool isDestructor ( void )
public bool isFinal ( void )
public bool isPrivate ( void )
public bool isProtected ( void )
public bool isPublic ( void )
public bool isStatic ( void )
public void setAccessible ( bool $accessible )
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

メソッド名

class

クラス名

定義済み定数

ReflectionMethod の修飾子

ReflectionMethod::IS_STATIC

メソッドが static であることを示します。

ReflectionMethod::IS_PUBLIC

メソッドが public であることを示します。

ReflectionMethod::IS_PROTECTED

メソッドが protected であることを示します。

ReflectionMethod::IS_PRIVATE

メソッドが private であることを示します。

ReflectionMethod::IS_ABSTRACT

メソッドが abstract であることを示します。

ReflectionMethod::IS_FINAL

メソッドが final であることを示します。

目次


リフレクション
PHP Manual