ReflectionExtension::__construct

(PHP 5, PHP 7, PHP 8)

ReflectionExtension::__constructConstructs a ReflectionExtension

Descrição

public ReflectionExtension::__construct ( string $name )

Construct a ReflectionExtension object.

Parâmetros

name

Name of the extension.

Valor Retornado

A ReflectionExtension object.

Exemplos

Exemplo #1 ReflectionExtension example

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

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

O exemplo acima irá imprimir algo similar à:

Extension: Reflection (version: $Revision$)

Veja Também

add a note add a note

User Contributed Notes

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