Home >Backend Development >PHP Tutorial >PHP multidimensional array value accumulation function with the same key
Function
<code>function array_value_sum() { $res = array(); foreach (func_get_args() as $arr) { foreach ($arr as $k => $v){ if (!isset($res[$k])){ $res[$k] = $v; }else{ $res[$k] += $v; } } } return $res; }</code>
Instance:
<code>$arr1 = array(311=>1, 312=>2, 314=>2); $arr2 = array(311=>2, 312=>2, 313=>5, 314=>9); $arr3 = array(314=>10); $newArr = array_value_sum($arr1, $arr2, $arr3); print_r($newArr);</code>
Output:
<code>Array ( [311] => 3 [312] => 4 [314] => 21 [313] => 5 )</code>
The above introduces the value accumulation function of the same key in PHP multi-dimensional array, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.