Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查数组是否像这样
array(3) { [0]=> array(0) { } [1]=> array(0) { } [2]=> array(0) { } }
居然是空的?因为对我来说这是一个空数组,但对于 empty() 这是一个包含 3 个元素的数组,而对于 count 这是一个长度为 3 的数组 .. 那么有没有办法在不遍历数组的情况下做到这一点?
先感谢您
if(!array_filter($array)){ // empty }
(文档)
这里也有说明
检查数组是否为空
利用array_filter();
array_filter();