"22", 3=>"33", 4=>"" ); print_r(count(array_filter($arr))); ?>">
当前位置:Gxlcms > PHP教程 > php计算数组不为空元素个数的方法_PHP

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

时间:2021-07-01 10:21:17 帮助过:21人阅读

代码如下:

$arr = array(
1=>"11",
2=>"22",
3=>"33",
4=>""
);
print_r(count(array_filter($arr)));
?>

人气教程排行