php计算数组不为空元素个数的方法

2015-01-24信息快讯网

本文为大家介绍下php计算数组不为空元素个数的方法,需要的朋友可以参考下

 
<?php 
$arr = array( 
1=>"11", 
2=>"22", 
3=>"33", 
4=>"" 
); 
print_r(count(array_filter($arr))); 
?> 
©2014-2024 dbsqp.com