ReflectionClass::getDocComment

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

ReflectionClass::getDefaultProperties

(PHP 5, PHP 7) Gets default properties public array ReflectionClass::getDefaultProperties ( void ) Gets default properties from a class (including inherited properties). Note: This method only works for static properties when used on internal classes. The default value of a static class property can not be tracked when using this method on user defined classes. Returns: An array of default pr

ReflectionClass::getConstructor

(PHP 5, PHP 7) Gets the constructor of the class public ReflectionMethod ReflectionClass::getConstructor ( void ) Gets the constructor of the reflected class. Returns: A ReflectionMethod object reflecting the class' constructor, or NULL if the class has no constructor. Examples: Basic usage of ReflectionClass::getConstructor()

ReflectionClass::getConstants

(PHP 5, PHP 7) Gets constants public array ReflectionClass::getConstants ( void ) Gets defined constants from a class. Returns: An array of constants. Constant name in key, constant value in value. This function is currently not documented; only its argument list is available. See also:

ReflectionClass::getConstant

(PHP 5, PHP 7) Gets defined constant public mixed ReflectionClass::getConstant ( string $name ) Gets the defined constant. Parameters: name Name of the constant. Returns: Value of the constant. This function is currently not documented; only its argument list is available.

ReflectionClass::export

(PHP 5, PHP 7) Exports a class public static string ReflectionClass::export ( mixed $argument [, bool $return = false ] ) Exports a reflected class. Parameters: argument The reflection to export. return Setting to TRUE will return the export, as opposed to emitting it. Setting to FALSE (the default) will do the opposite.

ReflectionClass::__construct

(PHP 5, PHP 7) Constructs a ReflectionClass public ReflectionClass::__construct ( mixed $argument ) Constructs a new ReflectionClass object. Parameters: argument Either a string containing the name of the class to reflect, or an object. Returns: No value is returned. This function is currently not documented;

Reflection::getModifierNames

(PHP 5, PHP 7) Gets modifier names public static array Reflection::getModifierNames ( int $modifiers ) Gets modifier names. Parameters: modifiers The modifiers to get, which is from a numeric value. Returns: An array of modifier names. This function is currently not documented; only its argument list is availa

Reflection::export

(PHP 5, PHP 7) Exports public static string Reflection::export ( Reflector $reflector [, bool $return = false ] ) Exports a reflection. Parameters: reflector The reflection to export. return Setting to TRUE will return the export, as opposed to emitting it. Setting to FALSE (the default) will do the opposite. Return

QuickHashIntStringHash::update

(PECL quickhash >= Unknown) This method updates an entry in the hash with a new value public bool QuickHashIntStringHash::update ( int $key, string $value ) This method updates an entry with a new value, and returns whether the entry was update. If there are duplicate keys, only the first found element will get an updated value. Use QuickHashIntStringHash::CHECK_FOR_DUPES during hash creation to prevent duplicate keys fro