我的数组在下面。我想要做的是计算数组中对于 read_status 有 null 或“新”的节点数。
有什么比遍历数组更充分的吗?
Array
(
[0] => Array
(
[id] => 428
[read_status] =>
)
[1] => Array
(
[id] => 427
[read_status] =>
)
[2] => Array
(
[id] => 441
[read_status] => new
)
[3] => Array
(
[id] => 341
[read_status] => read
)
)
所以计数应该是3。