ReflectionExtension::__construct

(PHP 5)

ReflectionExtension::__constructConstructs a ReflectionExtension

Beskrivelse

ReflectionExtension::__construct ( string $name )

Construct a ReflectionExtension object.

Parametre

name

Name of the extension.

Returnerings Værdier

A ReflectionExtension object.

Eksempler

Eksempel #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 $)

Se også

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top