6

如何确定声明闭包以在闭包外部使用的参数数量?例如:

$myClosure = function($arg1, $arg2, $arg3){

}

$numArgs = someMagicalFunction($myClosure);
echo("that closure expects $numArgs arguments");

有什么功能可以满足我的需要吗?

4

1 回答 1

9

使用反射。见这篇文章: http: //www.bossduck.com/2009/07/php-5-3-closures-and-reflection/

$func = function($one, $two = 'test') {
    echo 'test function ran'.PHP_EOL;
};
$info = new ReflectionFunction($func);
var_dump(
    $info->getName(), 
    $info->getNumberOfParameters(), 
    $info->getNumberOfRequiredParameters()
);

返回:

string(9) "{closure}"
int(2)
int(1)
于 2013-03-06T21:01:08.153 回答