ReflectionFunction::__toString
ReflectionFunctionAbstract::__clone
Reflection
PHP Manual
The ReflectionFunctionAbstract class
Introduction
A parent class to
ReflectionFunction
, read its description for details.
Class synopsis
ReflectionFunctionAbstract
implements
Reflector
{
/* Properties */
public
$
ReflectionFunctionAbstract->name
;
/* Methods */
final
private
void
ReflectionFunctionAbstract::__clone
(
void
)
public
object
ReflectionFunctionAbstract::getClosureThis
(
void
)
public
string
ReflectionFunctionAbstract::getDocComment
(
void
)
public
int
ReflectionFunctionAbstract::getEndLine
(
void
)
public
ReflectionExtension
ReflectionFunctionAbstract::getExtension
(
void
)
public
string
ReflectionFunctionAbstract::getExtensionName
(
void
)
public
string
ReflectionFunctionAbstract::getFileName
(
void
)
public
string
ReflectionFunctionAbstract::getName
(
void
)
public
string
ReflectionFunctionAbstract::getNamespaceName
(
void
)
public
int
ReflectionFunctionAbstract::getNumberOfParameters
(
void
)
public
int
ReflectionFunctionAbstract::getNumberOfRequiredParameters
(
void
)
public
array
ReflectionFunctionAbstract::getParameters
(
void
)
public
string
ReflectionFunctionAbstract::getShortName
(
void
)
public
int
ReflectionFunctionAbstract::getStartLine
(
void
)
public
array
ReflectionFunctionAbstract::getStaticVariables
(
void
)
public
bool
ReflectionFunctionAbstract::inNamespace
(
void
)
public
bool
ReflectionFunctionAbstract::isClosure
(
void
)
public
bool
ReflectionFunctionAbstract::isDeprecated
(
void
)
public
bool
ReflectionFunctionAbstract::isInternal
(
void
)
public
bool
ReflectionFunctionAbstract::isUserDefined
(
void
)
public
bool
ReflectionFunctionAbstract::returnsReference
(
void
)
abstract
public
void
ReflectionFunctionAbstract::__toString
(
void
)
}
Properties
name
Prop description
Table of Contents
ReflectionFunctionAbstract::__clone
— Clones function
ReflectionFunctionAbstract::getClosureThis
— Returns this pointer bound to closure
ReflectionFunctionAbstract::getDocComment
— Gets doc comment
ReflectionFunctionAbstract::getEndLine
— Gets end line number
ReflectionFunctionAbstract::getExtension
— Gets extension info
ReflectionFunctionAbstract::getExtensionName
— Gets extension name
ReflectionFunctionAbstract::getFileName
— Gets file name
ReflectionFunctionAbstract::getName
— Gets function name
ReflectionFunctionAbstract::getNamespaceName
— Gets namespace name
ReflectionFunctionAbstract::getNumberOfParameters
— Gets number of parameters
ReflectionFunctionAbstract::getNumberOfRequiredParameters
— Gets number of required parameters
ReflectionFunctionAbstract::getParameters
— Gets parameters
ReflectionFunctionAbstract::getShortName
— Gets function short name
ReflectionFunctionAbstract::getStartLine
— Gets starting line number
ReflectionFunctionAbstract::getStaticVariables
— Gets static variables
ReflectionFunctionAbstract::inNamespace
— Checks if function in namespace
ReflectionFunctionAbstract::isClosure
— Checks if closure
ReflectionFunctionAbstract::isDeprecated
— Checks if deprecated
ReflectionFunctionAbstract::isInternal
— Checks if is internal
ReflectionFunctionAbstract::isUserDefined
— Checks if user defined
ReflectionFunctionAbstract::returnsReference
— Checks if returns reference
ReflectionFunctionAbstract::__toString
— To string
ReflectionFunction::__toString
ReflectionFunctionAbstract::__clone
Reflection
PHP Manual