i have an array:
Array 
(
[0] => Array
    (
        [setid] => 2
        [income] => 100
    )
[1] => Array
    (
        [setid] => 2
        [income] => 120
    )
[2] => Array
    (
        [setid] => 3
        [income] => 700
    )
)
i need to find entrys with the same setid, sum their income up and delete duplicate entrys - in the end it should look like this:
Array
(
[0] => Array
    (
        [setid] => 2
        [income] => 220
    )
[1] => Array
    (
        [setid] => 3
        [income] => 700
    )
)
does someone know a sophosticated solution for my problem or do i have to take the long road and do every step manually?
thanks and greetings
Just create a new array which you make fast adressable by using the setid as key. And reindex the array at the end.
$result = array();
foreach ($array as $val) {
    if (!isset($result[$val['setid']]))
        $result[$val['setid']] = $val;
    else
        $result[$val['setid']]['income'] += $val['income'];
}
$result = array_values($result); // reindex array
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With