ReflectionExtension
PHP Manual

ReflectionExtension::getVersion

(PHP 5)

ReflectionExtension::getVersionGets extension version

説明

public string ReflectionExtension::getVersion ( void )

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"

参考


ReflectionExtension
PHP Manual