码迷,mamicode.com
首页 > 编程语言 > 详细

php利用array_filter()过滤数组空值

时间:2019-02-02 17:08:45      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:空值   方法   com   count   als   结果   class   php   int   

利用array_filter过滤数组空值

<?php
    
$array = array(
    0 => ‘霜天部落‘,
    1 => false,
    2 => 1,
    3 => null,
    4 => ‘‘,
    5 => ‘http://www.hzhuti.com‘,
    6 => ‘0‘
);

print_r(array_filter($array));
/*
输出结果为:
Array
(
    [0] => 霜天部落
    [2] => 1
    [5] => http://www.hzhuti.com
)
*/
    
//计算数组不为空元素个数的方法
print_r(count(array_filter($array))); 
//输出结果:3

php利用array_filter()过滤数组空值

标签:空值   方法   com   count   als   结果   class   php   int   

原文地址:https://www.cnblogs.com/mg007/p/10348621.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!