P粉0601123962023-08-15 09:36:30
请尝试以下代码
$countResult = array(); foreach( $swatchLists as $item ){ if( isset($item['type']) == false ){ continue; // 排除不包含'type'的数组 } $type = $item['type']; if( isset($countResult[$type]) ){ $countResult[$type]++; }else{ $countResult[$type] = 1; } } var_dump($countResult);
每种类型的计数都将存储在$countResult
中,数组键是类型值,数组值是计数。