©
이 문서에서는 PHP 중국어 웹사이트 매뉴얼 풀어 주다
(PHP 5)
ReflectionExtension::__construct — Constructs a ReflectionExtension
$name
)Construct a ReflectionExtension object .
name
Name of the extension.
A ReflectionExtension object .
Example #1 ReflectionExtension example
<?php
$ext = new ReflectionExtension ( 'Reflection' );
printf ( 'Extension: %s (version: %s)' , $ext -> getName (), $ext -> getVersion ());
?>
以上例程的输出类似于:
Extension: Reflection (version: $Revision: 330543 $)