使用外部计算的变量的回调函数
基本上我想做这样的事情:
$arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
$avg = array_sum($arr) / count($arr);
$callback = function($val){ return $val < $avg };
return array_filter($arr, $callback);
这实际上可能吗?在匿名函数外部计算变量并在内部使用它?
Basically I'd like to do something like this:
$arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
$avg = array_sum($arr) / count($arr);
$callback = function($val){ return $val < $avg };
return array_filter($arr, $callback);
Is this actually possible? Calculating a variable outside of the anonymous function and using it inside?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
use
关键字从父作用域继承变量。在您的示例中,您可以执行以下操作:有关详细信息,请参阅 上的手册页匿名函数。
如果您运行的是 PHP 7.4 或更高版本,则可以使用箭头函数 。箭头函数是定义匿名函数的另一种更简洁的方法,它会自动捕获外部变量,从而无需
use
:考虑到箭头函数的简洁性,您可以直接在
内部编写它们。 >array_filter
调用:You can use the
use
keyword to inherit variables from the parent scope. In your example, you could do the following:For more information, see the manual page on anonymous functions.
If you're running PHP 7.4 or later, arrow functions can be used. Arrow functions are an alternative, more concise way of defining anonymous functions, which automatically capture outside variables, eliminating the need for
use
:Given how concise arrow functions are, you can reasonably write them directly within the
array_filter
call:使用全局变量即 $GLOBAL['avg']
use global variables i.e $GLOBAL['avg']