位置: 首頁 > 設計 > 網頁設計

php如何抓取https的內容的程式碼

2016-06-28 網頁設計

直接用file_get_contents,會報錯;

複製程式碼 程式碼如下:

$url = (");

file_get_contents($url);

錯誤:

Warning: file_get_contents() [-get-contents]: failed to open stream: No such file or directory in D:wampwwwgrabber_ on line 3

用curl的方式是可以的:

複製程式碼 程式碼如下:

$url = ();

$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 程式碼
2016-11-14
2016-11-14
2016-06-29
2016-07-28
2016-07-28
2014-12-10
2016-11-14
2016-10-08
2015-12-19
2016-02-12

Copyright ©2024 才華齋 All Rights Reserved.