PHP中file_get_contents函数抓取https地址出错的解决方法(两种方法)
发布:smiling 来源: PHP粉丝网 添加日期:2021-06-18 22:21:54 浏览: 评论:0
本文通过两种方法解决PHP中file_get_contents函数抓取https地址出错,需要的朋友可以参考下。
方法一:
在php中,抓取https的网站,提示如下的错误内容:
Warning: file_get_contents() [function.file-get-contents]: failed to open stream: Invalid argument in I:Webmyphpa.php on line 16
打开php.ini文件找到 ;extension=php_openssl.dll ,去掉双引号”;” ,重启web服务器即可。
apache服务器的话,可以同时启用mod_ssl模块测试。
如果不方便修改服务器配置,可以参考使用如下的函数来解决:
代码示例:
- //file_get_contents抓取https地址内容
- function getCurl($url){
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL,$url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
- $result = curl_exec($ch);
- curl_close ($ch);
- return $result;
- }
方法二:
在php中,利用file_get_contents函数抓取url是https开头的网站网页内容时,会出现类似下面的错误警告:
Warning: file_get_contents(https://127.0.0.1/index.php) [function.file-get-contents]: failed to open stream: Invalid argument in E:\website\blog\test.php on line 25
打开php.ini找到 ;extension=php_openssl.dll ,去掉双引号”;” ,重启web服务器即可。
apache的可以同时启用mod_ssl模块测试
以上内容给大家分享了两种方法解决PHP中file_get_contents函数抓取https地址出错,希望对大家有所帮助。
Tags: file_get_contents
相关文章
- ·php file_get_contents读取大容量文件方法(2014-03-30)
- ·php 中file_get_contents超时问题的解决方法(2014-07-18)
- ·PHP file_get_contents采集程序开发教程详解(2014-07-21)
- ·file file_get_contents HTTP request failed(2014-08-17)
- ·php curl、fopen、file_get_contents实例代码(2014-08-17)
- ·php中file_get_contents()导致nginx出现504(2014-09-13)
- ·php file_get_contents返回空 无效解决办法(2014-09-13)
- ·php中file_get_contents 出现HTTP request failed! ...(2014-09-20)
- ·php提示Warning: file_get_contents(): couldn’t resolve(2014-09-20)
- ·解决PHP中file_get_contents抓取网页中文乱码问题(2014-09-21)
- ·如何使用php中的file_get_contents()函数将文件内容读入字符串(2020-01-07)
- ·php file_get_contents抓取Gzip网页乱码的三种解决方法(2020-06-23)
- ·php采用file_get_contents代替使用curl实例(2021-04-24)
- ·PHP中使用file_get_contents抓取网页中文乱码问题解决方法(2021-05-03)
- ·PHP中使用file_get_contents post数据代码例子(2021-05-14)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)