• <sub id="h4knl"><ol id="h4knl"></ol></sub>
    <sup id="h4knl"></sup>
      <sub id="h4knl"></sub>

      <sub id="h4knl"><ol id="h4knl"><em id="h4knl"></em></ol></sub><s id="h4knl"></s>
      1. <strong id="h4knl"></strong>

      2. php如何抓取https的內容的代碼

        時間:2024-08-06 14:58:01 PHP 我要投稿
        • 相關推薦

        php如何抓取https的內容的代碼

          直接用file_get_contents,會報錯;

          復制代碼 代碼如下:

          $url = (https://xxx.com");

          file_get_contents($url);

          錯誤:

          Warning: file_get_contents(https://xxx.com) [function.file-get-contents]: failed to open stream: No such file or directory in D:wampwwwgrabber_clientindex.php on line 3

          用curl的方式是可以的:

          復制代碼 代碼如下:

          $url = (https://xxx.com);

          $ch = curl_init();

          curl_setopt($ch, CURLOPT_URL,$url);

          curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

          curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

          $result = curl_exec($ch);

          print_r($result);

          重點是以下兩句:

          復制代碼 代碼如下:

          curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

          curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

        【php如何抓取https的內容的代碼】相關文章:

        php如何過濾危險html代碼09-21

        如何在cmd下面寫php代碼01-22

        將php實現過濾UBB代碼09-11

        php對圖像的各種處理函數代碼總結07-03

        PHP url 加密解密函數代碼方法10-25

        網站如何吸引蜘蛛對頁面的抓取?07-17

        蜘蛛抓取網站如何提高網站權重09-26

        如何學好PHP知識09-20

        如何讓JAVA代碼更高效07-18

        新手如何學習PHP語言10-19

        在线咨询
        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码
      3. <sub id="h4knl"><ol id="h4knl"></ol></sub>
        <sup id="h4knl"></sup>
          <sub id="h4knl"></sub>

          <sub id="h4knl"><ol id="h4knl"><em id="h4knl"></em></ol></sub><s id="h4knl"></s>
          1. <strong id="h4knl"></strong>

          2. 日韩精品亚洲国产中文一区蜜芽 | 亚洲AV日韩AV在线第一区 | 自拍欧美日韩一区二区三区 | 亚洲中文日韩一级 | 午夜打电话福利视频 | 亚洲午夜精品久久久久久人妖 |

            php如何抓取https的內容的代碼

              直接用file_get_contents,會報錯;

              復制代碼 代碼如下:

              $url = (https://xxx.com");

              file_get_contents($url);

              錯誤:

              Warning: file_get_contents(https://xxx.com) [function.file-get-contents]: failed to open stream: No such file or directory in D:wampwwwgrabber_clientindex.php on line 3

              用curl的方式是可以的:

              復制代碼 代碼如下:

              $url = (https://xxx.com);

              $ch = curl_init();

              curl_setopt($ch, CURLOPT_URL,$url);

              curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

              curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

              $result = curl_exec($ch);

              print_r($result);

              重點是以下兩句:

              復制代碼 代碼如下:

              curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

              curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);