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

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

报告相同问题?

悬赏问题

  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 划分vlan后不通了
  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大