PHP – Reflection
Class ReflectionMethod
- ReflectionFunctionAbstract implements Reflector
-
ReflectionMethod
Direct Known Subclasses
NMethodReflection
Documented at php.net
public static
|
#
export(
$class,
$name,
$return
)
|
public
|
#
__construct(
$class_or_method,
$name
)
|
public
|
#
__toString(
)
|
public
|
#
isPublic(
)
|
public
|
#
isPrivate(
)
|
public
|
#
isProtected(
)
|
public
|
#
isAbstract(
)
|
public
|
#
isFinal(
)
|
public
|
#
isStatic(
)
|
public
|
#
isConstructor(
)
|
public
|
#
isDestructor(
)
|
public
|
#
getModifiers(
)
|
public
|
#
invoke(
$object,
$args
)
|
public
|
#
invokeArgs(
$object,
array
$args
)
|
public
|
#
getDeclaringClass(
)
|
public
|
#
getPrototype(
)
|
public
|
#
setAccessible(
$value
)
|
Methods Inherited From ReflectionFunctionAbstract
__toString(), inNamespace(), isClosure(), isDeprecated(), isInternal(), isUserDefined(), getDocComment(), getEndLine(), getExtension(), getExtensionName(), getFileName(), getName(), getNamespaceName(), getNumberOfParameters(), getNumberOfRequiredParameters(), getParameters(), getShortName(), getStartLine(), getStaticVariables(), returnsReference()
IS_STATIC |
1 # |
IS_PUBLIC |
256 # |
IS_PROTECTED |
512 # |
IS_PRIVATE |
1024 # |
IS_ABSTRACT |
2 # |
IS_FINAL |
4 # |
Properties Inherited From ReflectionFunctionAbstract
$name