ReflectionExtension::getVersion

(PHP 5, PHP 7, PHP 8)

ReflectionExtension::getVersionGets extension version

Descrizione

public ReflectionExtension::getVersion(): ?string

Gets the version of the extension.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Esempi

Example #1 ReflectionExtension::getVersion() example

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

Il precedente esempio visualizzerĂ  qualcosa simile a:

string(3) "0.1"

Vedere anche:

add a note add a note

User Contributed Notes

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