ReflectionExtension::getVersion

(PHP 5)

ReflectionExtension::getVersionGets extension version

Beskrivelse

public string ReflectionExtension::getVersion ( void )

Gets the version of the extension.

Parametre

This function has no parameters.

Returnerings Værdier

The version of the extension.

Eksempler

Eksempel #1 ReflectionExtension::getVersion() example

<?php
$ext 
= new ReflectionExtension('mysqli');
var_dump($ext->getVersion());
?>

The above example will output something similar to:

string(3) "0.1"

Se også

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top