php去除数组中的空值 php过滤数组中的空字符串

主机教程 建站分享 2年前 (2022-12-19) 156次浏览

文章摘要:php去除数组中的空值 php过滤数组中的空字符串

php去除数组中空值的方法:使用array_filter()函数来清除数组中的空值即可。 具体操作如下: 使用 […]

php去除数组中空值的方法:使用array_filter()函数来清除数组中的空值即可。

具体操作如下:

使用array_filter()函数来清除数组中的空值。

array_filter()的语法:

array array_filter ( array $array [, callable $callback [, int $flag = 0 ]] )

代码示例:

$entry = array(  

             0 => 'foo',  

             1 => false,  

             2 => -1,  

             3 => null,  

             4 => '' 

          );  

print_r(array_filter($entry));  

?>

输出结果:

Array(

    [0] => foo

    [2] => -1

)

注意:array_filter()函数会把输入数组中的每个键值传给回调函数,如果没有回调函数,那么默认删除数组中的值为false的元素。


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:php去除数组中的空值 php过滤数组中的空字符串
文章链接:http://www.7966.org/post/12283.html
转载请注明出处

喜欢 (0)