按列將二維數組行分組並對另一列求和
根據特定列對二維數組中的行進行分組並對另一列求和列中,您可以採用以下方法:
假設我們有一個像這樣的數組:
<code class="php">[ ['url_id' => 2191238, 'time_spent' => 41], ['url_id' => 2191606, 'time_spent' => 215], ['url_id' => 2191606, 'time_spent' => 25] ]</code>
要計算每個唯一url_id 的time_spent 值的總和,我們可以使用以下PHP程式碼:
<code class="php">$ts_by_url = array(); foreach($array as $data) { if(!array_key_exists($data['url_id'], $ts_by_url)) $ts_by_url[ $data['url_id'] ] = 0; $ts_by_url[ $data['url_id'] ] += $data['time_spent']; }</code>
在此程式碼中,我們循環遍歷數組並建立一個由url_id 索引的陣列($ts_by_url)。對於循環中的每個資料項,我們檢查其 url_id 是否存在於 $ts_by_url 中。如果沒有,我們將其值設為 0。然後,我們將 time_spent 值增加目前資料項中的 time_spent。
循環結束後,$ts_by_url 將包含所需的結果:
2191238 => 41 2191606 => 240 // == 215 + 25
以上是如何在 PHP 中按列將二維數組中的行分組並對另一列求和?的詳細內容。更多資訊請關注PHP中文網其他相關文章!