当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ReflectionExtension getVersion()用法及代码示例


ReflectionExtension::getVersion()函数是PHP中的内置函数,用于返回指定扩展名的版本。

用法:

string ReflectionExtension::getVersion( void )

参数:该函数不接受任何参数。


返回值:此函数返回指定扩展名的版本。

以下示例程序旨在说明PHP中的ReflectionExtension::getVersion()函数:

示例1:

<?php 
  
// Defining an extension 
$A = 'DOM'; 
  
// Using ReflectionExtension() over the  
// specified extension 
$extension = new ReflectionExtension($A); 
  
// Calling the getVersion() function 
$B = $extension->getVersion(); 
  
// Getting the version of the 
// specified extension 
var_dump($B); 
?>

输出:

string(8) "20031129"

示例2:

<?php 
  
// Using ReflectionExtension() over  
// a extension xml 
$extension = new ReflectionExtension('xml'); 
  
// Calling the getVersion() function and 
// Getting the version of the specified extension 
var_dump($extension->getVersion()); 
?>

输出:

string(23) "7.0.33-0ubuntu0.16.04.7"

参考: https://www.php.net/manual/en/reflectionextension.getversion.php



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | ReflectionExtension getVersion() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。