(PHP 5, PHP 7, PHP 8)
ReflectionExtension::getFunctions — 获取扩展函数
此函数没有参数。
一个关联数组,包含扩展中定义的每个函数的 ReflectionFunction 对象,键为函数名。如果未定义任何函数,则返回一个空数组。
示例 #1 ReflectionExtension::getFunctions() 示例
<?php
$dom = new ReflectionExtension('SimpleXML');
print_r($dom->getFunctions());
?>
上面的例子将输出类似于
Array ( [simplexml_load_file] => ReflectionFunction Object ( [name] => simplexml_load_file ) [simplexml_load_string] => ReflectionFunction Object ( [name] => simplexml_load_string ) [simplexml_import_dom] => ReflectionFunction Object ( [name] => simplexml_import_dom ) )