dsv17139 2017-02-16 17:03
浏览 45
已采纳

PHP Laravel将json结果重建为另一种json格式[关闭]

can soeone help to modify the json result to another result format.

I have this json

{
  "_links": {...},
  "total": 10,
  "data": [
    {
      "_links": { ... },
      "id": 1,
      "name": "John Doe",
      "email": "john@doe.com",
      "images": [
        {
          "imageid": 12,
          "name": "Trees",
          "url":"http://path/of/image.jpg"
        },
        {
          "imageid": 13,
          "name": "People",
          "url":"http://path/of/image.jpg"
        },
      ]
    }
  ]
}

Then my goal is to achieve this kind of result:

{
  "_links": { ... },
  "total": 10,
  "data": [
    {
      "_links": { ... }
      "id": 1,
      "name": "John Doe",
      "email": "john@doe.com",
      "images": [
        {
          "12" : {
            "name":"Trees",
            "url":"http://path/of/image.jpg"
          },
          "13" : {
            "name":"People",
            "url":"http://path/of/image.jpg"
          }
        }
      ]
    }
  ]
}

SO basically on the second json I want the imageid to be a keyname inside the images object. I would like to collection in laravel instead of looping. something like:

collect($results)->each(function($value, $key){
   //code here...
});

Please help. Thanks

  • 写回答

1条回答 默认 最新

  • dongyong1400 2017-02-16 21:38
    关注

    I got it to worked for now, but I'm not satisfied with my code because of the loop. if you guys have an idea to improve, please post your answer. Thanks.

    Thanks to apokryfos for the idea in mapWithKeys().

    $newArray = array();
    foreach($result['data'] as $k => $v){
      $images = $v['images'];
      unset($v['images']);
      $keyed = collect($images)->mapWithKeys(function($item){
        $imageId = $item['imageid'];
        $data = [" $imageId" => [
          'name' => $item['name'],
          'url' =>  $item['url']
          ]];
        return $data;
      });
    
      $v = array_add($v, 'images', $keyed->toArray());
      array_push($newArray, $v);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥60 pb数据库修改或者求完整pb库存系统,需为pb自带数据库
  • ¥15 spss统计中二分类变量和有序变量的相关性分析可以用kendall相关分析吗?
  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路