I have the array shown below. I would like to have a resultant array where value in the key elements [tv], [tu], [cost], [km] are summed for all the row with same value of [tick_id]. In this example we should sum the value [tv], [tu], [cost], [km] of the array elements 0, 1, 2, … How can I do this?
Array (
[0] => stdClass Object (
[id] => 15
[user_id] => 44
[name] => inspector1
[tv] => 0.00
[tc] => 0.00
[tu] => 0.00
[cost] => 0.00
[kms] => 0
[date_s] => 2012-03-30
[notes] =>
[tick_id] => 11
[tot_fee] => 5500
)
[1] => stdClass Object (
[id] => 39
[user_id] => 46
[name] => Assistant
[tv] => 10.00
[tc] => 0.00
[tu] => 4.50
[cost] => 0.00
[kms] => 120
[date_s] => 2012-03-31
[notes] =>
[tick_id] => 15
[tot_fee] => 0
)
[2] => stdClass Object (
[id] => 35
[user_id] => 46
[name] =>
[tv] => 0.00
[tc] => 0.00
[tu] => 0.00
[cost] => 0.00
[kms] => 0
[date_s] => 2012-03-30
[notes] =>
[tick_id] => 13
[tot_fee] => 3200
)
…
)
foreachto iterate and sum?