(PHP 5, PHP 7)
Gets extension version
public string ReflectionExtension::getVersion ( void )
Gets the version of the extension.
Returns:
The version of the extension.
Examples:
ReflectionExtension::getVersion() example
1 2 3 4 | <?php $ext = new ReflectionExtension( 'mysqli' ); var_dump( $ext ->getVersion()); ?> |
The above example will output something similar to:
string(3) "0.1"
See also:
Please login to continue.