可能重复:
如何计算 php 数组中的非空条目?
我想计算数组中不为空/空的键的数量。
EG:
array(1>'asdf',2>'fdas',3>'');
count($array) would return 3, I want a function that returns 2 as 3 is empty
是否有任何 php 内置函数来执行此操作?如何做呢?
可能重复:
如何计算 php 数组中的非空条目?
我想计算数组中不为空/空的键的数量。
EG:
array(1>'asdf',2>'fdas',3>'');
count($array) would return 3, I want a function that returns 2 as 3 is empty
是否有任何 php 内置函数来执行此操作?如何做呢?