Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

reflectionfunction(3) [php man page]

REFLECTIONFUNCTION(3)							 1						     REFLECTIONFUNCTION(3)

The ReflectionFunction class

INTRODUCTION
The ReflectionFunction class reports information about a function. CLASS SYNOPSIS
ReflectionFunction ReflectionFunctionextends ReflectionFunctionAbstractReflector Constants o const integer$ReflectionFunction::IS_DEPRECATED262144 Properties o public$name Methods o public ReflectionFunction::__construct (mixed $name) o publicstatic string ReflectionFunction::export (string $name, [string $return]) o public Closure ReflectionFunction::getClosure (void ) o public mixed ReflectionFunction::invoke ([mixed $parameter], [mixed $...]) o public mixed ReflectionFunction::invokeArgs (array $args) o public bool ReflectionFunction::isDisabled (void ) o public string ReflectionFunction::__toString (void ) Inherited methods o finalprivate void ReflectionFunctionAbstract::__clone (void ) o public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass (void ) o public object ReflectionFunctionAbstract::getClosureThis (void ) o public string ReflectionFunctionAbstract::getDocComment (void ) o public int ReflectionFunctionAbstract::getEndLine (void ) o public ReflectionExtension ReflectionFunctionAbstract::getExtension (void ) o public string ReflectionFunctionAbstract::getExtensionName (void ) o public string ReflectionFunctionAbstract::getFileName (void ) o public string ReflectionFunctionAbstract::getName (void ) o public string ReflectionFunctionAbstract::getNamespaceName (void ) o public int ReflectionFunctionAbstract::getNumberOfParameters (void ) o public int ReflectionFunctionAbstract::getNumberOfRequiredParameters (void ) o public array ReflectionFunctionAbstract::getParameters (void ) o public string ReflectionFunctionAbstract::getShortName (void ) o public int ReflectionFunctionAbstract::getStartLine (void ) o public array ReflectionFunctionAbstract::getStaticVariables (void ) o public bool ReflectionFunctionAbstract::inNamespace (void ) o public bool ReflectionFunctionAbstract::isClosure (void ) o public bool ReflectionFunctionAbstract::isDeprecated (void ) o public bool ReflectionFunctionAbstract::isGenerator (void ) o public bool ReflectionFunctionAbstract::isInternal (void ) o public bool ReflectionFunctionAbstract::isUserDefined (void ) o public bool ReflectionFunctionAbstract::isVariadic (void ) o public bool ReflectionFunctionAbstract::returnsReference (void ) o abstractpublic void ReflectionFunctionAbstract::__toString (void ) PROPERTIES
o $name - Name of the function. Read-only, throws ReflectionException in attempt to write. PREDEFINED CONSTANTS
REFLECTIONFUNCTION MODIFIERS
o ReflectionFunction::IS_DEPRECATED - Indicates deprecated functions. PHP Documentation Group REFLECTIONFUNCTION(3)

Check Out this Related Man Page

REFLECTIONPROPERTY(3)							 1						     REFLECTIONPROPERTY(3)

The ReflectionProperty class

INTRODUCTION
The ReflectionProperty class reports information about classes properties. CLASS SYNOPSIS
ReflectionProperty ReflectionPropertyReflector Constants o const integer$ReflectionProperty::IS_STATIC1 o const integer$ReflectionProperty::IS_PUBLIC256 o const integer$ReflectionProperty::IS_PROTECTED512 o const integer$ReflectionProperty::IS_PRIVATE1024 Properties o public$name o public$class Methods o finalprivate void ReflectionProperty::__clone (void ) o public ReflectionProperty::__construct (mixed $class, string $name) o publicstatic string ReflectionProperty::export (mixed $class, string $name, [bool $return]) o public ReflectionClass ReflectionProperty::getDeclaringClass (void ) o public string ReflectionProperty::getDocComment (void ) o public int ReflectionProperty::getModifiers (void ) o public string ReflectionProperty::getName (void ) o public mixed ReflectionProperty::getValue ([object $object]) o public bool ReflectionProperty::isDefault (void ) o public bool ReflectionProperty::isPrivate (void ) o public bool ReflectionProperty::isProtected (void ) o public bool ReflectionProperty::isPublic (void ) o public bool ReflectionProperty::isStatic (void ) o public void ReflectionProperty::setAccessible (bool $accessible) o public void ReflectionProperty::setValue (object $object, mixed $value) o public string ReflectionProperty::__toString (void ) PROPERTIES
o $name - Name of the property. Read-only, throws ReflectionException in attempt to write. o $class - Name of the class where the property is defined. Read-only, throws ReflectionException in attempt to write. PREDEFINED CONSTANTS
REFLECTIONPROPERTY MODIFIERS
o ReflectionProperty::IS_STATIC - Indicates static properties. o ReflectionProperty::IS_PUBLIC - Indicates public properties. o ReflectionProperty::IS_PROTECTED - Indicates protected properties. o ReflectionProperty::IS_PRIVATE - Indicates private properties. PHP Documentation Group REFLECTIONPROPERTY(3)
Man Page