当前位置: 代码迷 >> PHP >> PHP里到底有多少函数那里看
  详细解决方案

PHP里到底有多少函数那里看

热度:70   发布时间:2016-04-28 21:42:50.0
PHP里究竟有多少函数那里看
求解PHP里究竟有多少函数那里看 那里有中文的函数解释

------解决方案--------------------
<?php
$funs = get_defined_functions(); ## get_declared_classes() , get_declared_interfaces(),get_defined_constants(),get_defined_vars(),get_extension_funcs('module_name')
var_dump($funs);
  相关解决方案