du16178 2019-04-23 23:54
浏览 146
已采纳

在保持结构的同时对多维数组中特定键的值求和

I have a multidimensional array that I am attempting to sum values on while keeping the structure of the array.

The array contains arrays of "financials" with data['tags'] of specific types of financial data. The keys of each "financial" is identical throughout the array, for example, every "financial" will have "revenue" and "expenses".

Company is also the identical throughout the array, but will need to be returned in the final array

Here is the exact format of the array of data I am working with:

$array = 
[
  [
    "financials" => [
      [
        "data" => [
          "tag" => "revenue",
        ],
        "value" => 1,
      ],
      [
        "data" => [
          "tag" => "expenses",
        ],
        "value" => 10,
      ],
    ],
    "company" => [
      "id" => 1,
      "name" => "company, inc",
    ],
  ],
  [
    "financials" => [
      [
        "data" => [
          "tag" => "revenue",
        ],
        "value" => 2,
      ],
      [
        "data" => [
          "tag" => "expenses",
        ],
        "value" => 20,
      ],
    ],
    "company" => [
      "id" => 1,
        "name" => "company, inc",
    ],
  ],
];


I am trying to figure out how to sum each "value" for each data['tag'] value, for example, if calculating the above array, the end result I am looking to get is:

[
  "financials" => [
    [
      "data" => [
        "tag" => "revenue",
      ],
      "value" => 3,
    ],
    [
      "data" => [
        "tag" => "expenses",
    ],
      "value" => 30,
    ],
  ],
  "company" => [
    "id" => 1,
    "name" => "company, inc",
  ],
],

Which keeps the original array structure but has summed financial values for each data['tag'] value.

Any help would be greatly appreciated.

  • 写回答

1条回答 默认 最新

  • dongpai1942 2019-04-24 00:24
    关注

    This code should do it:

    $array = [
        [
            "financials" => [
                [
                    "data" => [
                        "tag" => "revenue",
                    ],
                    "value" => 1,
                ],
                [
                    "data" => [
                        "tag" => "expenses",
                    ],
                    "value" => 10,
                ],
            ],
            "company" => [
                "id" => 1,
                "name" => "company, inc",
            ],
        ],
        [
            "company" => [
                "id" => 1,
                "name" => "company, inc",
            ],
            "financials" => [
                [
                    "data" => [
                        "tag" => "revenue",
                    ],
                    "value" => 2,
                ],
                [
                    "data" => [
                        "tag" => "expenses",
                    ],
                    "value" => 20,
                ],
            ],
        ],
    ];
    $company = $array[0]['company'];
    
    $summedArray = $usedTags = [];
    $summedArray['company'] = $company;
    $summedArray['financials'] = [];
    foreach ($array as $set) {
        $data = $set['financials'];
        foreach ($data as $dataSet) {
            if (in_array($dataSet['data']['tag'], $usedTags) === false) {
                $summedArray['financials'][] = [
                    "data" => [
                        "tag" => $dataSet['data']['tag']
                    ],
                    "value" => $dataSet['value']
                ];
                $usedTags[] = $dataSet['data']['tag'];
            } else {
                $summedArray['financials'][array_search($dataSet['data']['tag'], $usedTags)]['value'] += $dataSet['value'];
            }
        }
    }
    
    var_dump($summedArray);
    

    I hope it would help you

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 求数据集和代码#有偿答复
  • ¥15 关于下拉菜单选项关联的问题
  • ¥20 java-OJ-健康体检
  • ¥15 rs485的上拉下拉,不会对a-b<-200mv有影响吗,就是接受时,对判断逻辑0有影响吗
  • ¥15 使用phpstudy在云服务器上搭建个人网站
  • ¥15 应该如何判断含间隙的曲柄摇杆机构,轴与轴承是否发生了碰撞?
  • ¥15 vue3+express部署到nginx
  • ¥20 搭建pt1000三线制高精度测温电路
  • ¥15 使用Jdk8自带的算法,和Jdk11自带的加密结果会一样吗,不一样的话有什么解决方案,Jdk不能升级的情况
  • ¥15 画两个图 python或R