douguai7291 2019-03-05 05:09
浏览 298
已采纳

PHP - 从curl响应中获取特定值

I have json decode set to true for array output.. This is the following format of response from using curl:

{
  "process_time": 0.018849853,
  "data": [
    {
      "id": "recent_search",
      "name": "",
      "items": []
    },
    {
      "id": "recent_view",
      "name": "",
      "items": []
    },
    {
      "id": "popular_search",
      "name": "",
      "items": []
    },
    {
      "id": "digital",
      "name": "DIGITAL",
      "items": []
    },
    {
      "id": "autocomplete",
      "name": "AUTOCOMPLETE",
      "items": [
        {
          "keyword": "tas wanita batam",
          "url": "/search?q=tas+wanita+batam&source=universe&st=product",
        },
        {
          "keyword": "tas wanita import",
          "url": "/search?q=tas+wanita+import&source=universe&st=product",
        },
        {
          "keyword": "tas wanita murah",
          "url": "/search?q=tas+wanita+murah&source=universe&st=product",
        },
        {
          "keyword": "tas wanita branded",
          "url": "/search?q=tas+wanita+branded&source=universe&st=product",
        },
        {
          "keyword": "tas wanita fossil",
          "url": "/search?q=tas+wanita+fossil&source=universe&st=product",
        }
      ]
    }
  ]
}

My PHP Code:

<?php
$url = 'hxxp://domain.com/univ/v8?q=tas+wanita';
$ch=curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$r=curl_exec($ch);
curl_close($ch);

print_r(json_decode($r, true));
?>

I want to save the parts items "keyword" only in php variable..

How can I do it? And what would be the best way of doing it?

  • 写回答

1条回答 默认 最新

  • douguanya6399 2019-03-05 05:15
    关注
        <?php
            $url = 'hxxp://domain.com/univ/v8?q=tas+wanita';
            $ch=curl_init($url);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            $r=curl_exec($ch);
            curl_close($ch);
    
            $data = json_decode($r, true);
            $i=0;
            foreach($data['data'] as $val) {
              foreach($val['items'] as $key => $item) { //it may give warning because empty array (i.e items = [].
                 $keywords[$i] = $item['keyword']; // this will store keyword in $keywords array.
                 $i++;
              }
            }
            $message = '<html><body>';
            $message .= '<table border="1" cellpadding="10">';
            $message .= "<tr><th><strong>Sr. No.:</strong> </th><th> 
                         <strong>Keyword</strong> </th></tr>";
            foreach ($keywords as $key => $value) {
               $message .= "<tr><td>".$key." </td><td>" .$value. "</td></tr>";
            }
            $message .= "</table>";
            $message .= "</body></html>";
            echo $message;
        ?>
    

    The foreach construct provides an easy way to iterate over arrays. foreach works only on arrays and objects, and will issue an error when you try to use it on a variable with a different data type or an uninitialised variable.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献