This is difficult to explain in words, but basically I need to take two arrays, merge them with unique values and sum one of columns. It makes more sense when written out below:
$a = array(
0 => array(
'ID' => 1,
'Count' => 2
),
);
$b = array(
0 => array(
'ID' => 1,
'Count' => 4,
),
1 => array(
'ID' => 2,
'Count' => 3,
),
);
and I need the final product to be:
$a_plus_b = array(
0 => array(
'ID' => 1,
'Count' => 6,
),
1 => array(
'ID' => 2,
'Count' => 3,
),
);
I have been playing with different variations of array_merge() and array_unique() but I can't find an efficient way to do what I need. I know I can always do nested loops, but I was hoping for something easier. Any ideas?