ReflectionMethod::isAbstract

(PHP 5, PHP 7) Checks if method is abstract public bool ReflectionMethod::isAbstract ( void ) Checks if the method is abstract. Returns: TRUE if the method is abstract, otherwise FALSE See also: ReflectionMethod::getDeclaringClass() -

ReflectionMethod::invokeArgs

(PHP 5 >= 5.1.0, PHP 7) Invoke args public mixed ReflectionMethod::invokeArgs ( object $object, array $args ) Invokes the reflected method and pass its arguments as array. Parameters: object The object to invoke the method on. In case of static methods, you can pass null to this parameter. args The parameters to be passed to the func

ReflectionMethod::invoke

(PHP 5, PHP 7) Invoke public mixed ReflectionMethod::invoke ( object $object [, mixed $parameter [, mixed $... ]] ) Invokes a reflected method. Parameters: object The object to invoke the method on. For static methods, pass null to this parameter. parameter Zero or more parameters to be passed to the method. It accepts a variable number

ReflectionMethod::getPrototype

(PHP 5, PHP 7) Gets the method prototype (if there is one). public ReflectionMethod ReflectionMethod::getPrototype ( void ) Returns the methods prototype. Returns: A ReflectionMethod instance of the method prototype. Exception: A ReflectionException exception is thrown if the method does not have a prototype. Examples:

ReflectionMethod::getModifiers

(PHP 5, PHP 7) Gets the method modifiers public int ReflectionMethod::getModifiers ( void ) Returns a bitfield of the access modifiers for this method. Returns: A numeric representation of the modifiers. The modifiers are listed below. The actual meanings of these modifiers are described in the predefined constants. Examples: Reflectio

ReflectionMethod::getDeclaringClass

(PHP 5, PHP 7) Gets declaring class for the reflected method. public ReflectionClass ReflectionMethod::getDeclaringClass ( void ) Gets the declaring class for the reflected method. Returns: A ReflectionClass object of the class that the reflected method is part of. Examples: ReflectionMethod::getDeclaringClass() example &

ReflectionMethod::getClosure

(PHP >= 5.4.0) Returns a dynamically created closure for the method public Closure ReflectionMethod::getClosure ( object $object ) Parameters: object Forbidden for static methods, required for other methods. Returns: Returns Closure. Returns NULL in case of an error. This function is currently not documented;

ReflectionMethod::export

(PHP 5, PHP 7) Export a reflection method. public static string ReflectionMethod::export ( string $class, string $name [, bool $return = false ] ) Exports a ReflectionMethod. Parameters: class The class name. name The name of the method. return Setting to TRUE will return the export, as opposed to em

ReflectionMethod::__construct

(PHP 5, PHP 7) Constructs a ReflectionMethod public ReflectionMethod::__construct ( mixed $class, string $name ) public ReflectionMethod::__construct ( string $class_method ) Constructs a new ReflectionMethod. Parameters: class Classname or object (instance of the class) that contains the method. name Name of the method.

ReflectionFunctionAbstract::__toString

(PHP 5, PHP 7) To string abstract public void ReflectionFunctionAbstract::__toString ( void ) To string. Returns: The string. This function is currently not documented; only its argument list is available. See also: __toString() -