當前位置:才華齋>設計>網頁設計>

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

網頁設計 閱讀(8.51K)

直接用file_get_contents,會報錯;

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

複製程式碼 程式碼如下:

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