- 相关推荐
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