"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Sum Values of Shared Keys When Merging Multiple Associative Arrays?

How to Sum Values of Shared Keys When Merging Multiple Associative Arrays?

Published on 2024-11-04
Browse:238

How to Sum Values of Shared Keys When Merging Multiple Associative Arrays?

Merging Multiple Flat Associative Arrays with Summation of Shared Keys

When combining associative arrays with the array_merge() function, values associated with shared keys tend to be replaced rather than summed. This poses a challenge when attempting to add the values of shared keys from multiple associative arrays.

To overcome this hurdle, one can adopt several approaches:

  • Foreach Iteration with Error Suppression:
$sums = array();
foreach (array_keys($a1   $a2) as $key) {
    $sums[$key] = (isset($a1[$key]) ? $a1[$key] : 0)   (isset($a2[$key]) ? $a2[$key] : 0);
}
  • Anonymous Mapping:
$keys = array_fill_keys(array_keys($a1   $a2), 0);
$sums = array_map(function ($a1, $a2) { return $a1   $a2; }, array_merge($keys, $a1), array_merge($keys, $a2));
  • Combinational Solution:
$sums = array_fill_keys(array_keys($a1   $a2), 0);
array_walk($sums, function (&$value, $key, $arrs) { $value = @($arrs[0][$key]   $arrs[1][$key]); }, array($a1, $a2));
  • Custom Function for Arbitrary Number of Arrays:
function array_sum_identical_keys() {
    $arrays = func_get_args();
    $keys = array_keys(array_reduce($arrays, function ($keys, $arr) { return $keys   $arr; }, array()));
    $sums = array();

    foreach ($keys as $key) {
        $sums[$key] = array_reduce($arrays, function ($sum, $arr) use ($key) { return $sum   @$arr[$key]; });
    }
    return $sums;
}

These approaches provide flexible solutions for merging multiple associative arrays and summing the values associated with shared keys.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3