ReflectionFunction::getClosure

(PHP >= 5.4.0) Returns a dynamically created closure for the function public Closure ReflectionFunction::getClosure ( void ) Returns: Returns Closure. Returns NULL in case of an error. This function is currently not documented; only its argument list is available.

ReflectionFunction::export

(PHP 5, PHP 7) Exports function public static string ReflectionFunction::export ( string $name [, string $return ] ) Exports a Reflected function. Parameters: name 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. R

ReflectionFunction::__construct

(PHP 5, PHP 7) Constructs a ReflectionFunction object public ReflectionFunction::__construct ( mixed $name ) Constructs a ReflectionFunction object. Parameters: name The name of the function to reflect or a closure. Returns: No value is returned. Exception: A ReflectionException if the name parameter does not con

ReflectionExtension::__toString

(PHP 5, PHP 7) To string public string ReflectionExtension::__toString ( void ) Exports a reflected extension and returns it as a string. This is the same as the ReflectionExtension::export() with the return set to TRUE. Returns: Returns the exported extension as a string, in the same way as the ReflectionExtension::export(). See al

ReflectionExtension::isTemporary

(PHP >= 5.4.0) Returns whether this extension is temporary public void ReflectionExtension::isTemporary ( void ) Returns: Returns TRUE for extensions loaded by dl(), FALSE otherwise. This function is currently not documented; only its argument list is available. See also:

ReflectionExtension::isPersistent

(PHP >= 5.4.0) Returns whether this extension is persistent public void ReflectionExtension::isPersistent ( void ) Returns: Returns TRUE for extensions loaded by extension, FALSE otherwise. This function is currently not documented; only its argument list is available. See also:

ReflectionExtension::info

(PHP 5, PHP 7) Print extension info public void ReflectionExtension::info ( void ) Prints out the "phpinfo()" snippet for the given extension. Returns: Information about the extension. Examples: ReflectionExtension::info() example <?php $ext = new ReflectionExtension('mysqli'); $ext->info(); ?> The above exam

ReflectionExtension::getVersion

(PHP 5, PHP 7) Gets extension version public string ReflectionExtension::getVersion ( void ) Gets the version of the extension. Returns: The version of the extension. Examples: ReflectionExtension::getVersion() example <?php $ext = new ReflectionExtension('mysqli'); var_dump($ext->getVersion()); ?> The above e

ReflectionExtension::getName

(PHP 5, PHP 7) Gets extension name public string ReflectionExtension::getName ( void ) Gets the extensions name. Returns: The extensions name. Examples: ReflectionExtension::getName() example <?php $ext = new ReflectionExtension('mysqli'); var_dump($ext->getName()); ?> The above example will output something s

ReflectionExtension::getINIEntries

(PHP 5, PHP 7) Gets extension ini entries public array ReflectionExtension::getINIEntries ( void ) Get the ini entries for an extension. Returns: An associative array with the ini entries as keys, with their defined values as values. Examples: ReflectionExtension::getINIEntries() example <?php $ext = new ReflectionExte