PHP 8.1.28 Released!

ReflectionExtension::getVersion

(PHP 5, PHP 7, PHP 8)

ReflectionExtension::getVersionEklentinin sürüm bilgisini döndürür

Açıklama

public ReflectionExtension::getVersion(): ?string

Eklentinin sürüm bilgisini döndürür.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Eklentinin sürüm bilgisi, eklentide sürüm bilgisi yoksa null.

Örnekler

Örnek 1 - ReflectionExtension::getVersion() örneği

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

Yukarıdaki örnek şuna benzer bir çıktı üretir:

string(3) "0.1"

Ayrıca Bakınız

add a note

User Contributed Notes

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