ReflectionExtension::getVersion

(PHP 5, PHP 7, PHP 8)

ReflectionExtension::getVersionGets extension version

Descrição

public ReflectionExtension::getVersion ( ) : string|null

Gets the version of the extension.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The version of the extension, or null if the extension has no version.

Exemplos

Exemplo #1 ReflectionExtension::getVersion() example

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

O exemplo acima irá imprimir algo similar à:

string(3) "0.1"

Veja Também

add a note add a note

User Contributed Notes

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