我尝试使用PHP解析JSON文件。但我现在被困住了。
这是我JSON文件的内容:
{
"John": {
"status":"Wait"
},
"Jennifer": {
"status":"Active"
},
"James": {
"status":"Active",
"age":56,
"count":10,
"progress":0.0029857,
"bad":0
}
}
这是我目前为止所做的尝试:
<?php
$string = file_get_contents("/home/michael/test.json");
$json_a = json_decode($string, true);
echo $json_a['John'][status];
echo $json_a['Jennifer'][status];
但因为我事先不知道名称(如'John'
, 'Jennifer'
)和所有可用的键和值(如'age'
, 'count'
),我认为我需要创建一些foreach循环。
我希望你能举个例子。