解决file_get_contents无法请求https连接的方法
发布:smiling 来源: PHP粉丝网 添加日期:2020-07-15 17:35:19 浏览: 评论:0
PHP.ini默认配置下,用file_get_contents读取https的链接,就会报如下错误,本文给出解决方法
错误: Warning: fopen() [function.fopen]: Unable to find the wrapper "https" - did you forget to enable it when you configured PHP?
解决方案有3:
1.windows下的PHP,只需要到php.ini中把extension=php_openssl.dll前面的;删掉,重启服务就可以了。
2.linux下的PHP,就必须安装openssl模块,安装好了以后就可以访问了。
3.如果服务器你不能修改配置的话,那么就使用curl函数来替代file_get_contents函数,当然不是简单的替换啊。还有相应的参数配置才能正常使用curl函数。
对curl函数封装如下:
- function http_request($url,$timeout=30,$header=array()){
- if (!function_exists('curl_init')) {
- throw new Exception('server not install curl');
- }
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_HEADER, true);
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
- if (!emptyempty($header)) {
- curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
- }
- $data = curl_exec($ch);
- list($header, $data) = explode("\r\n\r\n", $data);
- $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
- if ($http_code == 301 || $http_code == 302) {
- $matches = array();
- preg_match('/Location:(.*?)\n/', $header, $matches);
- $url = trim(array_pop($matches));
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_HEADER, false);
- $data = curl_exec($ch);
- }
- if ($data == false) {
- curl_close($ch);
- }
- @curl_close($ch);
- return $data;
- }
Tags: file_get_contents
相关文章
- ·file_get_contents无法请求https连接的解决方法(2014-07-02)
- ·php file_get_contents 设置代理抓取页面示例(2014-07-12)
- ·php file_get_contents与curl性能比较(2014-08-27)
- ·php curl file_get_contents post方式获取数据(2018-09-21)
- ·PHP Warning: file_get_contents failed to open stream解决办法(2018-10-20)
- ·PHP中file_get_contents高級用法实例(2021-04-14)
- ·PHP CURL或file_get_contents获取网页标题的代码及两者效率的稳定性问题(2021-06-27)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)