PHP数组中的匿名函数,语法是什么?
我可以将匿名函数定义为数组值吗?这是行不通的:
$m = array(
0 => array('condition' => function($v) { return intval($v)}),
3 => array('condition' => function($v) { return trim($v) > 0})
);
Can i define anonymous functions as array value? This is not working:
$m = array(
0 => array('condition' => function($v) { return intval($v)}),
3 => array('condition' => function($v) { return trim($v) > 0})
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 PHP 中,每个语句都必须以分号终止。试试这个:
有关详细信息,请参阅文档。
In PHP, every statement has to be terminated by a semicolon. Try this:
See the documentation for details.
试试这个:
你忘记了;。
Try this:
You forgot the ;.