久久久久无码精品,四川省少妇一级毛片,老老熟妇xxxxhd,人妻无码少妇一区二区

php如何抓取https的內(nèi)容的代碼

時(shí)間:2024-08-06 14:58:01 PHP 我要投稿
  • 相關(guān)推薦

php如何抓取https的內(nèi)容的代碼

  直接用file_get_contents,會(huì)報(bào)錯(cuò);

  復(fù)制代碼 代碼如下:

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

  file_get_contents($url);

  錯(cuò)誤:

  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的方式是可以的:

  復(fù)制代碼 代碼如下:

  $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);

  重點(diǎn)是以下兩句:

  復(fù)制代碼 代碼如下:

  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

  curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

【php如何抓取https的內(nèi)容的代碼】相關(guān)文章:

php如何過(guò)濾危險(xiǎn)html代碼09-21

如何在cmd下面寫(xiě)php代碼01-22

將php實(shí)現(xiàn)過(guò)濾UBB代碼09-11

php對(duì)圖像的各種處理函數(shù)代碼總結(jié)07-03

PHP url 加密解密函數(shù)代碼方法10-25

網(wǎng)站如何吸引蜘蛛對(duì)頁(yè)面的抓取?07-17

蜘蛛抓取網(wǎng)站如何提高網(wǎng)站權(quán)重09-26

如何學(xué)好PHP知識(shí)09-20

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

新手如何學(xué)習(xí)PHP語(yǔ)言10-19