📜  PHP | ReflectionExtension info()函数

📅  最后修改于: 2022-05-13 01:56:18.702000             🧑  作者: Mango

PHP | ReflectionExtension info()函数

ReflectionExtension::info()函数是PHP中的一个内置函数,用于返回指定扩展的信息。

句法:

void ReflectionExtension::info( void )

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

返回值:该函数返回指定分机的信息。

下面的程序说明了PHP中的 ReflectionExtension::info()函数:

方案一:

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

方案二:

info());
?>

输出:

xml

XML Support => active
XML Namespace Support => active
libxml2 Version => 2.9.3
NULL

参考: https://www. PHP.net/manual/en/reflectionextension.info。 PHP