ReflectionObject::__construct

(PHP 5, PHP 7) Constructs a ReflectionObject public ReflectionObject::__construct ( object $argument ) Constructs a ReflectionObject. Parameters: argument An object instance. Returns: No value is returned. This function is currently not documented; only its argument list is available.

ReflectionMethod::__toString

(PHP 5, PHP 7) Returns the string representation of the Reflection method object. public string ReflectionMethod::__toString ( void ) Returns the string representation of the Reflection method object. Returns: A string representation of this ReflectionMethod instance. Examples: ReflectionMethod::__toString() example <?

ReflectionMethod::setAccessible

(PHP 5 >= 5.3.2, PHP 7) Set method accessibility public void ReflectionMethod::setAccessible ( bool $accessible ) Sets a method to be accessible. For example, it may allow protected and private methods to be invoked. Parameters: accessible TRUE to allow accessibility, or FALSE. Returns: No value is returned.

ReflectionMethod::isStatic

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

ReflectionMethod::isPublic

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

ReflectionMethod::isProtected

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

ReflectionMethod::isPrivate

(PHP 5, PHP 7) Checks if method is private public bool ReflectionMethod::isPrivate ( void ) Checks if the method is private. Returns: TRUE if the method is private, otherwise FALSE This function is currently not documented; only its argument list is available. See also:

ReflectionMethod::isFinal

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

ReflectionMethod::isDestructor

(PHP 5, PHP 7) Checks if method is a destructor public bool ReflectionMethod::isDestructor ( void ) Checks if the method is a destructor. Returns: TRUE if the method is a destructor, otherwise FALSE See also: ReflectionMethod::isConstructor() -

ReflectionMethod::isConstructor

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