douba9425 2018-03-07 18:51 采纳率: 100%
浏览 270
已采纳

PHP根据foreach循环内的值求和数组值

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.

  • 写回答

1条回答 默认 最新

  • duanlongnao0028 2018-03-07 19:37
    关注

    You don't need to worry about previous/next values to group your array.

    Just iterate it and use the column you want to group by as a key in your result array.

    foreach ($your_array as $item) {
        $groups[$item['supercategory']][] = $item;
    }
    

    This will basically add a dimension to your array, where all the items are grouped under their respective supercategory.

    After you have that structure, it's easy to do operations on groups. Here's an example of how to produce the set of sums I think you're trying to get.

    foreach ($groups as $cat => $items) {
        $category_totals[$cat] = array_sum(array_column($items, 'totalsale'));
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 目详情-五一模拟赛详情页
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line