dongtun3328 2018-08-19 22:55
浏览 569
已采纳

Laravel - 将多个数组合并为一个对象

Let's say I have this PHP code using Laravel 5.6:

$action = [
    [
        "name" => "action",
        "value" => "DepositMoney"
    ],
    [
        "name" => "coins",
        "type" => "number",
        "value" => "534"
    ]
];

return collect($action)->map(function($item, $key) {
    return [
        $item['name'] => $item['value']
    ];
});

which produces:

[
  {
    "action": "DepositMoney"
  },
  {
    "coins": "534"
  }
]

How do I make it so I can merge those together and produce this instead (using something from here: https://laravel.com/docs/5.6/eloquent-collections#available-methods):

[
    "action" => "DepositMoney",
    "coins" => "534"
]

Thanks. This is for form_params on Guzzle.

  • 写回答

2条回答 默认 最新

  • douhao9203 2018-08-19 23:07
    关注

    You need the reduce() function, to create a single value from multiple elements of an array. Documentation is here: https://laravel.com/docs/5.6/collections#method-reduce

    I would suggesting trying this (I didn't test it, but you get the idea, and should be able to understand how to use reduce from this example):

    return collect($action)->map(function($item, $key) {
        return [
            $item['name'] => $item['value']
        ];
    })->reduce(function ($carry, $item) {
        foreach ($item as $k => $v) {
            $carry[$k] = $v;
        }
        return $carry;
    });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 shape_predictor_68_face_landmarks.dat
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料