ReflectionFunctionAbstract::getExtension

(PHP 5, PHP 7) Gets extension info public ReflectionExtension ReflectionFunctionAbstract::getExtension ( void ) Get the extension information of a function. Returns: The extension information, as a ReflectionExtension object. This function is currently not documented; only its argument list is available.

ReflectionFunctionAbstract::getEndLine

(PHP 5, PHP 7) Gets end line number public int ReflectionFunctionAbstract::getEndLine ( void ) Get the ending line number. Returns: The ending line number of the user defined function, or FALSE if unknown. This function is currently not documented; only its argument list is available. See

ReflectionFunctionAbstract::getDocComment

(PHP 5 >= 5.1.0, PHP 7) Gets doc comment public string ReflectionFunctionAbstract::getDocComment ( void ) Get a Doc comment from a function. Returns: The doc comment if it exists, otherwise FALSE This function is currently not documented; only its argument list is available. See also:

ReflectionFunctionAbstract::getClosureThis

(PHP >= 5.4.0) Returns this pointer bound to closure public object ReflectionFunctionAbstract::getClosureThis ( void ) Returns: Returns $this pointer. Returns NULL in case of an error. This function is currently not documented; only its argument list is available.

ReflectionFunctionAbstract::getClosureScopeClass

(PHP >= 5.4.0) Returns the scope associated to the closure public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass ( void ) Returns: Returns the class on success or NULL on failure. This function is currently not documented; only its argument list is available.

ReflectionFunctionAbstract::__clone

(PHP 5, PHP 7) Clones function final private void ReflectionFunctionAbstract::__clone ( void ) Clones a function. Returns: This function is currently not documented; only its argument list is available. See also: Object cloning -

ReflectionFunction::__toString

(PHP 5, PHP 7) To string public string ReflectionFunction::__toString ( void ) To string. Returns: Returns ReflectionFunction::export()-like output for the function. Examples: ReflectionFunction::__toString() example <?php function title($title, $name) {     return sprintf("%s. %s\r\n", $title, $name); } echo new Refl

ReflectionFunction::isDisabled

(PHP 5, PHP 7) Checks if function is disabled public bool ReflectionFunction::isDisabled ( void ) Checks if the function is disabled, via the disable_functions directive. Returns: TRUE if it's disable, otherwise FALSE See also: ReflectionFunctionAbstract::isUserDefined() - disable_func

ReflectionFunction::invokeArgs

(PHP 5 >= 5.1.0, PHP 7) Invokes function args public mixed ReflectionFunction::invokeArgs ( array $args ) Invokes the function and pass its arguments as array. Parameters: args The passed arguments to the function as an array, much like call_user_func_array() works. Returns: Returns the result of the invoked function

ReflectionFunction::invoke

(PHP 5, PHP 7) Invokes function public mixed ReflectionFunction::invoke ([ mixed $parameter [, mixed $... ]] ) Invokes a reflected function. Parameters: args The passed in argument list. It accepts a variable number of arguments which are passed to the function much like call_user_func() is. Returns: Returns the result of the invoked function cal