php抓取https url网页内容方法
程序员文章站
2022-05-30 16:10:09
...
在开发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);
下一篇: V4L2应用程序框架
推荐阅读
-
Python实现周期性抓取网页内容的方法
-
python基于BeautifulSoup实现抓取网页指定内容的方法
-
对php 判断http还是https,以及获得当前url的方法详解
-
php curl获取https页面内容,不直接输出返回结果的设置方法
-
php获取网页中图片、DIV内容的简单方法
-
Python实现周期性抓取网页内容的方法
-
PHP中使用file_get_contents抓取网页中文乱码问题解决方法
-
php curl获取https页面内容,不直接输出返回结果的设置方法
-
对php 判断http还是https,以及获得当前url的方法详解
-
使用php方法curl抓取AJAX异步内容思路分析及代码分享