ReflectionFunctionAbstract::getClosureUsedVariables

(PHP 8 >= 8.1.0)

ReflectionFunctionAbstract::getClosureUsedVariables返回闭包中使用的变量数组

说明

public ReflectionFunctionAbstract::getClosureUsedVariables(): array

返回 Closure 中使用的变量的 array

参数

此函数没有参数。

返回值

返回 Closure 中使用的变量的 array

示例

示例 #1 ReflectionFunctionAbstract::getClosureUsedVariables() 示例

<?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)
}

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top