ReflectionExtension::getVersion
(PHP 5)
ReflectionExtension::getVersion — Gets extension version
Opis
public string ReflectionExtension::getVersion
( void
)
Gets the version of the extension.
Parametry
Ta funkcja nie posiada parametrów.
Zwracane wartości
The version of the extension.
Przykłady
Przykład #1 ReflectionExtension::getVersion() example
<?php
$ext = new ReflectionExtension('mysqli');
var_dump($ext->getVersion());
?>
Powyższy przykład wyświetli coś podobnego do:
string(3) "0.1"
There are no user contributed notes for this page.
