ReflectionExtension::__construct
(PHP 5)
ReflectionExtension::__construct — Constructs a ReflectionExtension
参数
-
name -
Name of the extension.
返回值
范例
Example #1 ReflectionExtension example
<?php
$ext = new ReflectionExtension('Reflection');
printf('Extension: %s (version: %s)', $ext->getName(), $ext->getVersion());
?>
以上例程的输出类似于:
Extension: Reflection (version: $Revision: 299908 $)
There are no user contributed notes for this page.
