ReflectionExtension::getFunctions

(PHP 5, PHP 7) Gets extension functions public array ReflectionExtension::getFunctions ( void ) Get defined functions from an extension. Returns: An associative array of ReflectionFunction objects, for each function defined in the extension with the keys being the function names. If no function are defined, an empty array is returned. Examples:

ReflectionExtension::getDependencies

(PHP 5, PHP 7) Gets dependencies public array ReflectionExtension::getDependencies ( void ) Gets dependencies, by listing both required and conflicting dependencies. Returns: An associative array with dependencies as keys and either Required, Optional or Conflicts as the values. Examples: ReflectionExtension::getDependencies() example

ReflectionExtension::getConstants

(PHP 5, PHP 7) Gets constants public array ReflectionExtension::getConstants ( void ) Get defined constants from an extension. Returns: An associative array with constant names as keys. Examples: ReflectionExtension::getConstants() example <?php $ext = new ReflectionExtension('DOM'); print_r($ext->getConstants());

ReflectionExtension::getClassNames

(PHP 5, PHP 7) Gets class names public array ReflectionExtension::getClassNames ( void ) Gets a listing of class names as defined in the extension. Returns: An array of class names, as defined in the extension. If no classes are defined, an empty array is returned. Examples: ReflectionExtension::getClassNames() example &l

ReflectionExtension::getClasses

(PHP 5, PHP 7) Gets classes public array ReflectionExtension::getClasses ( void ) Gets a list of classes from an extension. Returns: An array of ReflectionClass objects, one for each class within the extension. If no classes are defined, an empty array is returned. Examples: ReflectionExtension::getClasses() example <?

ReflectionExtension::export

(PHP 5, PHP 7) Export public static string ReflectionExtension::export ( string $name [, string $return = false ] ) Exports a reflected extension. The output format of this function is the same as the CLI argument --re [extension]. Parameters: name The reflection to export. return Setting to TRUE will return the export, as opposed to e

ReflectionExtension::__construct

(PHP 5, PHP 7) Constructs a ReflectionExtension public ReflectionExtension::__construct ( string $name ) Construct a ReflectionExtension object. Parameters: name Name of the extension. Returns: A ReflectionExtension object. Examples: ReflectionExtension example <?php

ReflectionExtension::__clone

(PHP 5, PHP 7) Clones final private void ReflectionExtension::__clone ( void ) The clone method prevents an object from being cloned. Reflection objects cannot be cloned. Returns: No value is returned, if called a fatal error will occur. See also: ReflectionExtension::__construct() -

ReflectionZendExtension::__toString

(PHP >= 5.4.0) To string handler public string ReflectionZendExtension::__toString ( void ) Returns: This function is currently not documented; only its argument list is available.

ReflectionZendExtension::getVersion

(PHP >= 5.4.0) Gets version public string ReflectionZendExtension::getVersion ( void ) Returns: This function is currently not documented; only its argument list is available.