ReflectionFunctionAbstract::getClosureUsedVariables
(PHP 8 >= 8.1.0)
ReflectionFunctionAbstract::getClosureUsedVariables — クロージャ内で使われている変数の配列を返す
説明
Closure の中で内で使われている変数の配列を返します。
パラメータ
この関数にはパラメータはありません。
戻り値
Closure の中で内で使われている変数の配列を返します。
例
例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) }
参考
- ReflectionFunctionAbstract::getClosureScopeClass() - クロージャに関連づけられたスコープクラスを返す
- ReflectionFunctionAbstract::getClosureThis() - クロージャにバインドした this ポインタを返す
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google