Reflection
PHP Manual

The ReflectionMethod class

導入

The ReflectionMethod class reports information about a method.

クラス概要

ReflectionMethod
ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
/* Constants */
const integer ReflectionMethod::IS_STATIC = 1 ;
const integer ReflectionMethod::IS_PUBLIC = 256 ;
const integer ReflectionMethod::IS_PROTECTED = 512 ;
const integer ReflectionMethod::IS_PRIVATE = 1024 ;
const integer ReflectionMethod::IS_ABSTRACT = 2 ;
const integer ReflectionMethod::IS_FINAL = 4 ;
/* Properties */
public $name ;
public $class ;
/* Methods */
__construct ( string $class_or_method [, string $name ] )
public static string export ( string $class , string $name [, bool $return = false ] )
public ReflectionClass getDeclaringClass ( void )
public int getModifiers ( void )
public void getPrototype ( void )
public mixed invoke ( object $object , string $args )
public mixed invokeArgs ( string $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 )
/* Inherited methods */
final private void ReflectionFunctionAbstract::__clone ( void )
public ReflectionExtension ReflectionFunctionAbstract::getExtension ( void )
public string ReflectionFunctionAbstract::getName ( void )
public ReflectionParameter ReflectionFunctionAbstract::getParameters ( void )
abstract public void ReflectionFunctionAbstract::__toString ( void )
}

プロパティ

name

Prop description

class

Prop description

定義済み定数

ReflectionMethod Node Types

ReflectionMethod::IS_STATIC

Description here...

ReflectionMethod::IS_PUBLIC

Description here...

ReflectionMethod::IS_PROTECTED

Description here...

ReflectionMethod::IS_PRIVATE

Description here...

ReflectionMethod::IS_ABSTRACT

Description here...

ReflectionMethod::IS_FINAL

Description here...

目次


Reflection
PHP Manual