ReflectionExtension::__construct
(PHP 5, PHP 7, PHP 8)
ReflectionExtension::__construct — Constructs a ReflectionExtension
参数
-
name
-
扩展的名称。
返回值
A ReflectionExtension object.
范例
示例 #1 ReflectionExtension example
<?php
$ext = new ReflectionExtension('Reflection');
printf('Extension: %s (version: %s)', $ext->getName(), $ext->getVersion());
?>
以上例程的输出类似于:
Extension: Reflection (version: $Revision$)
add a note
User Contributed Notes
There are no user contributed notes for this page.
备份地址:http://www.lvesu.com/blog/php/reflectionextension.construct.php