繁体   English   中英

使用 PHP 读取 JSON 数据

[英]Read JSON Data Using PHP

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); 将其转换为 object。

然后使用foreach($obj->response->docs as $doc)迭代“docs”。

然后,您可以使用$doc->student_id$doc->student_name[0]访问这些字段。

PHP 有一个 json_decode function 允许您将 JSON 字符串转换为数组:

$array = json_decode($json_string, true);
$student_id = $array['response']['docs'][0]['student_id'];
...

当然,您可能想要遍历学生列表而不是访问索引 0。

$result = json_decode($result, true);
$result['response']['docs'][0]['student_id'] ...
$json_a = json_decode($string, TRUE);
$json_o = json_decode($string);


#array method
foreach($json_a['response']['docs'] as $students)
{
    echo $students['student_id']." name is ".$students['student_name'][0];
    echo "<br>";
}

#Object Method`enter code here`
foreach($json_o->response->docs as $sthudent_o)
{
    echo $sthudent_o->student_id. " name is ".$sthudent_o->student_name[0];
    echo "<br>";
}

为什么不将 PHP 客户端之一用于 Solr 或 PHP 响应编写器? http://wiki.apache.org/solr/SolPHP

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM