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

php计算数组不为空元素个数

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

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

人气教程排行