(PHP 5, PHP 7)
ReflectionExtension::getVersion — Gets extension version
Gets the version of the extension.
Această funcție nu are parametri.
The version of the extension.
Example #1 ReflectionExtension::getVersion() example
<?php
$ext = new ReflectionExtension('mysqli');
var_dump($ext->getVersion());
?>
Exemplul de mai sus va afișa ceva similar cu:
string(3) "0.1"