使用PHP读取JSON数据
Solr以以下JSON格式返回响应。
{ "responseHeader":{
"status":0,
"QTime":2,
"params":{
"indent":"on",
"start":"0",
"q":"*:*",
"wt":"json",
"version":"2.2",
"rows":"10"}},
"response":{"numFound":3,"start":0,"docs":[
{
"student_id":"AB1001",
"student_name":[
"John"]
},
{
"student_id":"AB1002",
"student_name":[
"Joe"]
},
{
"student_id":"AB1003",
"student_name":[
"Lorem"]
}]
}}
使用PHP读取student_id,student_name的简单方法是什么?
回答:
使用$obj = json_decode($yourJSONString);
将其转换为一个对象。
然后使用foreach($obj->response->docs as $doc)
来遍历“文档”。
然后,您可以使用$doc->student_id
和访问字段$doc->student_name[0]
。
以上是 使用PHP读取JSON数据 的全部内容, 来源链接: utcz.com/qa/429372.html