php抓取https的内容的代码
作者:bea
直接用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_cli
直接用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);
有用 | 无用
代码如下:
$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 iconv 解决utf-8和gb2312编码转换问题
- 让的PHP代码飞起来的40条小技巧(提升php效率)
- ajax+php打造进度条代码[readyState各状态说明]
- 创建数据库php代码 用PHP写出自己的BLOG系统
- 创建配置文件 用PHP写出自己的BLOG系统 2
- php 中文字符入库或显示乱码问题的解决方法
- QueryPath PHP 中的jQuery
- 10个可以简化php开发过程的MySQL工具
- Fatal error: Call to undefined function curl_init()解决方法
- PHP Socket 编程
- 有关JSON以及JSON在PHP中的应用
- dedecms系统的广告设置代码 基础版本
- PHP 动态随机生成验证码类代码
- DedeCMS 核心类TypeLink.class.php摘要笔记
- 通俗易懂的php防注入代码
- Ext.data.PagingMemoryProxy分页一次性读取数据的实现代码
- 用PHP实现读取和编写XML DOM代码
- php session和cookie使用说明
- DedeCMS dede_channeltype表字段注释