ReflectionExtension::getVersion
(PHP 5)
ReflectionExtension::getVersion — Gets extension version
Descrierea
public string ReflectionExtension::getVersion
( void
)
Gets the version of the extension.
Parametri
Această funcție nu are parametri.
Valorile întoarse
The version of the extension.
Exemple
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"
There are no user contributed notes for this page.
