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
$ext = new ReflectionExtension('Reflection');

printf('Extension: %s (version: %s)', $ext->getName(), $ext->getVersion());
?>

The above example will output something similar to:

Extension: Reflection (version: $Revision: 330543 $)
See also:

ReflectionExtension::info() -

Constructors -

doc_php
2016-02-24 16:13:29
Comments
Leave a Comment

Please login to continue.