哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

ReflectionFunctionAbstract::getClosureUsedVariables

(PHP 8 >= 8.1.0)

ReflectionFunctionAbstract::getClosureUsedVariablesReturns an array of the used variables in the Closure

说明

public ReflectionFunctionAbstract::getClosureUsedVariables(): array

Returns an array of the used variables in the Closure.

参数

此函数没有参数。

返回值

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

参见

打开 哈希空间 微信小程序中查看更佳