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 鼠标右键,撤销删除 复制 移动,要怎样删除
  • ¥15 使用MATLAB进行余弦相似度计算加速
  • ¥15 服务器安装php5.6版本
  • ¥15 我想用51单片机和数码管做一个从0开始的计数表 我写了一串代码 但是放到单片机里面数码管只闪烁一下然后熄灭
  • ¥20 系统工程中,状态空间模型中状态方程的应用。请猛男来完整讲一下下面所有问题
  • ¥15 我想在WPF的Model Code中获取ViewModel Code中的一个参数
  • ¥15 arcgis处理土地利用道路 建筑 林地分类
  • ¥20 使用visual studio 工具用C++语音,调用openslsx库读取excel文件的sheet问题
  • ¥100 寻会做云闪付tn转h5支付链接的技术
  • ¥15 DockerSwarm跨节点无法访问问题