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

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

报告相同问题?