(PHP 5)
ReflectionExtension::getVersion — Gets extension version
Gets the version of the extension.
この関数にはパラメータはありません。
The version of the extension.
例1 ReflectionExtension::getVersion example
<?php
$ext = new ReflectionExtension('mysqli');
var_dump($ext->getVersion());
?>
上の例の出力は、 たとえば以下のようになります。
string(3) "0.1"