Array ( [0] => 0 //value is int 0 which isn;t empty value [1] => //this is empty value [2] => //this is empty value )
我想让上面的数组如下,任何人都可以帮助我吗?
非常感谢
Array ( [0] => 0 )
您可以使用
array_filter删除空值(null,false,”,0):
原文链接:https://www.f2er.com/php/138513.htmlarray_filter($array);
如果您不想从阵列中删除0,请参阅@ Sabari的答案:
array_filter($array,'strlen');