ReflectionExtension::getName
(PHP 5)
ReflectionExtension::getName — Gets extension name
Descrierea
public string ReflectionExtension::getName
( void
)
Gets the extensions name.
Parametri
Această funcție nu are parametri.
Valorile întoarse
The extensions name.
Exemple
Example #1 ReflectionExtension::getName() example
<?php
$ext = new ReflectionExtension('mysqli');
var_dump($ext->getName());
?>
Exemplul de mai sus va afișa ceva similar cu:
string(6) "mysqli"
There are no user contributed notes for this page.
