ReflectionProperty::getName

(PHP 5, PHP 7) Gets property name public string ReflectionProperty::getName ( void ) Gets the properties name. Returns: The name of the reflected property. This function is currently not documented; only its argument list is available. See also: ReflectionProperty::get

ReflectionProperty::getModifiers

(PHP 5, PHP 7) Gets modifiers public int ReflectionProperty::getModifiers ( void ) Gets the modifiers. Returns: A numeric representation of the modifiers. This function is currently not documented; only its argument list is available. See also: ReflectionProperty::isPr

ReflectionProperty::getDocComment

(PHP 5 >= 5.1.0, PHP 7) Gets the property doc comment public string ReflectionProperty::getDocComment ( void ) Gets the doc comment for a property. Returns: The property doc comment. Examples: ReflectionProperty::getDocComment() example <?php class Str {     /**      * @var int  The length of the string      */     

ReflectionProperty::getDeclaringClass

(PHP 5, PHP 7) Gets declaring class public ReflectionClass ReflectionProperty::getDeclaringClass ( void ) Gets the declaring class. Returns: A ReflectionClass object. This function is currently not documented; only its argument list is available. See also: ReflectionPr

ReflectionProperty::export

(PHP 5, PHP 7) Export public static string ReflectionProperty::export ( mixed $class, string $name [, bool $return ] ) Exports a reflection. Parameters: argument The reflection to export. name The property name. return Setting to TRUE will return the export, as opposed to emitting it. Setting to FALSE

ReflectionProperty::__construct

(PHP 5, PHP 7) Construct a ReflectionProperty object public ReflectionProperty::__construct ( mixed $class, string $name ) Parameters: class The class name, that contains the property. name The name of the property being reflected. Returns: No value is returned. This function

ReflectionProperty::__clone

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

ReflectionParameter::__toString

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

ReflectionParameter::isVariadic

(PHP 5 >= 5.6.0, PHP 7) Checks if the parameter is variadic public bool ReflectionParameter::isVariadic ( void ) Checks if the parameter was declared as a variadic parameter. Returns: Returns TRUE if the parameter is variadic, otherwise FALSE.

ReflectionParameter::isPassedByReference

(PHP 5, PHP 7) Checks if passed by reference public bool ReflectionParameter::isPassedByReference ( void ) Checks if the parameter is passed in by reference. Returns: TRUE if the parameter is passed in by reference, otherwise FALSE This function is currently not documented; only its argument list is available.