update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets extension version

ReflectionExtension::getVersion

(PHP 5)

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"

참고