ReflectionExtension::getVersion
(PHP 5)
ReflectionExtension::getVersion — Gets extension version
Descripción
public string ReflectionExtension::getVersion
( void
)
Gets the version of the extension.
Parámetros
Esta función no tiene parámetros.
Valores devueltos
The version of the extension.
Ejemplos
Example #1 ReflectionExtension::getVersion() example
<?php
$ext = new ReflectionExtension('mysqli');
var_dump($ext->getVersion());
?>
El resultado del ejemplo sería algo similar a:
string(3) "0.1"
There are no user contributed notes for this page.
