编程语言
首页 > 编程语言> > 匿名函数中的PHP变量

匿名函数中的PHP变量

作者:互联网

我正在玩PHP中的匿名函数,并意识到它们似乎没有达到它们之外的变量.
有没有办法解决这个问题?

例:

$variable = "nothing";

functionName(someArgument, function() {
  $variable = "something";
});

echo $variable;  //output: "nothing"

这将输出“无”.有没有办法匿名函数可以访问$变量?

解决方法:

是的,use a closure

functionName(someArgument, function() use( &$variable) {
  $variable = "something";
});

请注意,为了使您能够修改$variable并检索匿名函数范围之外的修改值,必须在使用&的闭包中引用它.

标签:anonymous,php,variables,function,global-variables
来源: https://codeday.me/bug/20190916/1807250.html