解析JSON数组获取数组的名称

时间:2013-06-21 11:33:01

标签: php json

我有这个JSON文件。

{
  "2438": {
    "open": false,
    "tag": "borci1",
  },
  "2210": {
    "open": false,
    "tag": "Jeskinky",
  },
}

我知道如何获得例如。 “标记”或“打开”,但我怎样才能获得“2438”和“2210”?

2 个答案:

答案 0 :(得分:1)

使用json_decode解析json后使用foreach

foreach($json as $key=>$value)
{
//$key is the index of array
}

答案 1 :(得分:1)

$json_arr=json_decode($string,true);
print_r( array_keys($json_arr) );