我试图用array_filter函数删除数组中的空元素.
当我使用这样的外部回调:
function callback($a) { return !empty($a);} $arr = array("abc",'','ghi'); $res = array_filter($arr,"callback");
它按预期工作.
但是如果我像这样使用array_filter:
$arr = array("abc",function($a) { return !empty($a);});
PHP Parse error: Syntax error,unexpected T_FUNCTION in test.PHP on line 2
我究竟做错了什么 ?
好像您使用的是不支持
anonymous functions的PHP版本(自PHP 5.3.0起可用).
原文链接:https://www.f2er.com/php/132647.html但是如果没有指定回调函数,那么array_filter
确实已经过滤了空值:
If no
callback
is supplied,all entries ofinput
equal to FALSE (see 07002) will be removed.