(PHP 5)
ReflectionExtension::__construct — Constructs a ReflectionExtension
$name
)Construct a ReflectionExtension object.
name
Name of the extension.
Example #1 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: 299908 $)