ReflectionExtension::getName
(PHP 5)
ReflectionExtension::getName — Gets extension name
Opis
public string ReflectionExtension::getName
( void
)
Gets the extensions name.
Parametry
Ta funkcja nie posiada parametrów.
Zwracane wartości
The extensions name.
Przykłady
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"
There are no user contributed notes for this page.
