当前位置: 移动技术网 > IT编程>开发语言>PHP > php抓取https的内容的代码

php抓取https的内容的代码

2019年05月01日  | 移动技术网IT编程  | 我要评论
直接用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);

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网