(PHP 5, PHP 7, PHP 8)
ReflectionFunction::__construct — 构造一个 ReflectionFunction 对象
如果 function
参数不包含有效函数,则会抛出 ReflectionException。
示例 #1 ReflectionFunction::__construct() 示例
<?php
/**
* 一个简单的计数器
*
* @return int
*/
function counter1()
{
static $c = 0;
return ++$c;
}
/**
* 另一个简单的计数器
*
* @return int
*/
$counter2 = function()
{
static $d = 0;
return ++$d;
};
function dumpReflectionFunction($func)
{
// 打印基本信息
printf(
"\n\n===> The %s function '%s'\n".
" declared in %s\n".
" lines %d to %d\n",
$func->isInternal() ? 'internal' : 'user-defined',
$func->getName(),
$func->getFileName(),
$func->getStartLine(),
$func->getEndline()
);
// 打印文档注释
printf("---> Documentation:\n %s\n", var_export($func->getDocComment(), 1));
// 打印静态变量(如果存在)
if ($statics = $func->getStaticVariables())
{
printf("---> Static variables: %s\n", var_export($statics, 1));
}
}
// 创建 ReflectionFunction 类的实例
dumpReflectionFunction(new ReflectionFunction('counter1'));
dumpReflectionFunction(new ReflectionFunction($counter2));
?>
以上示例将输出类似于以下内容
===> The user-defined function 'counter1' declared in Z:\reflectcounter.php lines 7 to 11 ---> Documentation: '/** * A simple counter * * @return int */' ---> Static variables: array ( 'c' => 0, ) ===> The user-defined function '{closure}' declared in Z:\reflectcounter.php lines 18 to 23 ---> Documentation: '/** * Another simple counter * * @return int */' ---> Static variables: array ( 'd' => 0, )