(PHP 5)
ReflectionExtension::getName — Gets extension name
Gets the extensions name.
Ta funkcja nie posiada parametrów.
The extensions name.
Przykład #1 ReflectionExtension::getName() example
<?php
$ext = new ReflectionExtension('mysqli');
var_dump($ext->getName());
?>
Powyższy przykład wyświetli coś podobnego do:
string(6) "mysqli"