我有这个JSON文件。
{
"2438": {
"open": false,
"tag": "borci1",
},
"2210": {
"open": false,
"tag": "Jeskinky",
},
}
我知道如何获得例如。 “标记”或“打开”,但我怎样才能获得“2438”和“2210”?
答案 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) );