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 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题