Hi I have an associative array which has common values. I want to sum those values and group based on different values.
My array is like following.
Array
(
[supercategory] => Food
[subtotal] => 1152.50
[discount] => 10.0000
[orderdiscount] => 10.00
[itemdiscount] => 0.00
[Total] => 1142.50
[Tax] => 80.06
[taxinclusive] => 0.00
[taxexclusive] => 80.06
[gratuity] => 0.00
[totalsale] => 1222.56
)
Array
(
[supercategory] => Drinks
[subtotal] => 1152.50
[discount] => 10.0000
[orderdiscount] => 10.00
[itemdiscount] => 0.00
[Total] => 1142.50
[Tax] => 80.06
[taxinclusive] => 0.00
[taxexclusive] => 80.06
[gratuity] => 0.00
[totalsale] => 1222.56
)
Array
(
[supercategory] => Food
[subtotal] => 1152.50
[discount] => 10.0000
[orderdiscount] => 10.00
[itemdiscount] => 0.00
[Total] => 1142.50
[Tax] => 80.06
[taxinclusive] => 0.00
[taxexclusive] => 80.06
[gratuity] => 0.00
[totalsale] => 1222.56
)
Array
(
[supercategory] => Alcohols
[subtotal] => 1152.50
[discount] => 10.0000
[orderdiscount] => 10.00
[itemdiscount] => 0.00
[Total] => 1142.50
[Tax] => 80.06
[taxinclusive] => 0.00
[taxexclusive] => 80.06
[gratuity] => 0.00
[totalsale] => 1222.56
)
While traversing this array I want to sum the array values within foreach loop/While based on key supercategory so that I can sum totalsale for all these keys having having same values. Please help me on this.