ReflectionFunctionAbstract::getClosureUsedVariables
(PHP 8 >= 8.1.0)
ReflectionFunctionAbstract::getClosureUsedVariables — Returns an array of the used variables in the Closure
说明
参数
此函数没有参数。
示例
示例 #1 ReflectionFunctionAbstract::getClosureUsedVariables() example
<?php
$one = 1;
$two = 2;
$function = function() use ($one, $two) {
static $three = 3;
};
$reflector = new ReflectionFunction($function);
var_dump($reflector->getClosureUsedVariables());
?>
以上示例的输出类似于:
array(2) { ["one"]=> int(1) ["two"]=> int(2) }
参见
- ReflectionFunctionAbstract::getClosureScopeClass() - Returns the class corresponding to the scope inside a closure
- ReflectionFunctionAbstract::getClosureThis() - 返回闭包内与 $this 对应的对象
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/reflectionfunctionabstract.getclosureusedvariables.php