(PHP 5, PHP 7, PHP 8)
ReflectionExtension::getName — Gets extension name
Questa funzione non contiene parametri.
The extensions name.
Example #1 ReflectionExtension::getName() example
<?php
$ext = new ReflectionExtension('mysqli');
var_dump($ext->getName());
?>
Il precedente esempio visualizzerà qualcosa simile a:
string(6) "mysqli"