PHP Doku:: Constructs a ReflectionExtension - reflectionextension.construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzVariablen- und typbezogene ErweiterungenReflectionThe ReflectionExtension classReflectionExtension::__construct

Ein Service von Reinhard Neidl - Webprogrammierung.

The ReflectionExtension class

<<ReflectionExtension::__clone

ReflectionExtension::export>>

ReflectionExtension::__construct

(PHP 5)

ReflectionExtension::__constructConstructs a ReflectionExtension

Beschreibung

ReflectionExtension::__construct ( string $name )

Construct a ReflectionExtension object.

Parameter-Liste

name

Name of the extension.

Rückgabewerte

A ReflectionExtension object.

Beispiele

Beispiel #1 ReflectionExtension example

<?php
$ext 
= new ReflectionExtension('Reflection');

printf('Extension: %s (version: %s)'$ext->getName(), $ext->getVersion());
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Extension: Reflection (version: $Revision: 299908 $)

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)