我在PHP手册中找不到解释use
我有代码
$num = 0;
array_walk_recursive($_REQUEST, function($mValue) use (&$num){
$num++;
});
我的Eclipse抱怨:
Parser error "'{' expected in compound-statement.
所以我猜这是在一些PHP版本中实现的。
答案 0 :(得分:1)
匿名函数/闭包和use
语言构造在5.3.0版本中实现
@see changelog:http://php.net/manual/en/functions.anonymous.php