ReflectionExtension::getVersion

(PHP 5, PHP 7)

ReflectionExtension::getVersionGets extension version

설명

public string ReflectionExtension::getVersion ( void )

Gets the version of the extension.

인수

이 함수는 인수가 없습니다.

반환값

The version of the extension.

예제

Example #1 ReflectionExtension::getVersion() example

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

위 예제의 출력 예시:

string(3) "0.1"

참고

add a note add a note

User Contributed Notes

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