ReflectionExtension::info()函数是PHP中的内置函数,用于返回指定扩展名的信息。
用法:
void ReflectionExtension::info( void )
参数:该函数不接受任何参数。
返回值:此函数返回指定扩展名的信息。
以下示例程序旨在说明PHP中的ReflectionExtension::info()函数:
示例1:
<?php
// Defining an extension
$A = 'DOM';
// Using ReflectionExtension() over the
// specified extension
$extension = new ReflectionExtension($A);
// Calling the info() function
$B = $extension->info();
// Getting the information of the
// specified extension
var_dump($B);
?>
输出:
dom DOM/XML => enabled DOM/XML API Version => 20031129 libxml Version => 2.9.3 HTML Support => enabled XPath Support => enabled XPointer Support => enabled Schema Support => enabled RelaxNG Support => enabled NULL
示例2:
<?php
// Using ReflectionExtension() over
// a extension xml
$extension = new ReflectionExtension('xml');
// Calling the info() function and
// Getting the information of the specified extension
var_dump($extension->info());
?>
输出:
xml XML Support => active XML Namespace Support => active libxml2 Version => 2.9.3 NULL
参考: https://www.php.net/manual/en/reflectionextension.info.php
相关用法
- PHP ReflectionExtension getClassNames()用法及代码示例
- PHP ReflectionExtension __toString()用法及代码示例
- PHP ReflectionExtension isTemporary()用法及代码示例
- PHP ReflectionExtension export()用法及代码示例
- PHP ReflectionExtension getDependencies()用法及代码示例
- PHP ReflectionExtension getClasses()用法及代码示例
- PHP ReflectionExtension getVersion()用法及代码示例
- PHP ReflectionExtension getName()用法及代码示例
- PHP ReflectionExtension isPersistent()用法及代码示例
- PHP ReflectionExtension getConstants()用法及代码示例
- PHP ReflectionExtension getFunctions()用法及代码示例
- PHP ReflectionExtension getINIEntries()用法及代码示例
- HTML DOM console.info()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | ReflectionExtension info() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。