使用JSON中的键,值和对象展平多维数组

时间:2015-01-16 10:45:49

标签: php arrays json multidimensional-array

连续两天,我正在尝试从多维数组中提取信息,我认为在尝试了很多事情之后我就陷入困境

这是我的json

{
  "profile": [
    {
      "id": "123456",
      "hostId": null,
      "description": [
        {
          "id": "name",
          "value": "foo"
        },
        {
          "id": "name2",
          "value": "foo2"
        },
        {
          "id": "bio",
          "value": "heyyyy"
        },
        {
          "id": "location",
          "value": "somewhere"
        }
      ],
      "ishere": true
    }
  ]
}

我想操纵它来拥有这个

{
  "id": "123456",
  "host": null,
  "name": "foo",
  "name2": "foo2",
  "bio": "heyyyy",
  "location": "somewhere",
  "ishere": true
}

有了这个(在json_decode之后)

        foreach ($array->profileUsers[0]->settings as $item) {
            $out2[$item->id] = $item->value;
        }

我只有

{  
  "name": "foo",
  "name2": "foo2",
  "bio": "heyyyy",
  "location": "somewhere"
}

谢谢

2 个答案:

答案 0 :(得分:1)

这应该可以解决问题:

$obj = json_decode($your_json);
$obj = $obj->profile[0];
foreach($obj->description as $d)
    $obj->{$d->id} = $d->value;
unset($obj->description);

答案 1 :(得分:0)

$data = json_decode($your_json, true);
$new_array = [];
foreach($data['profile'] as $key=>$item) {
  if(is_array($item)) {
     $new_array[$item['id']] = $item['value'];
  }
  else {
     $new_array[$key] = $item;
  }
}

硬编码,希望它会有所帮助。