最佳答案
我在 PHP 中尝试使用匿名函数,发现它们似乎无法到达函数之外的变量。 有什么办法可以解决这个问题吗?
例如:
$variable = "nothing";
functionName($someArgument, function() {
$variable = "something";
});
echo $variable; //output: "nothing"
这将输出“无”。是否有任何方法,匿名函数可以访问 $variable
?