首页 > 后端开发 > php教程 > php抓取https url网页内容方法

php抓取https url网页内容方法

WBOY
发布: 2016-06-20 13:03:14
原创
1363 人浏览过

在开发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.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板