解决file_get_contents无法请求https连接的方法

2015-01-24信息快讯网

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;  
}  

destoon网站转移服务器后搜索汉字出现乱码的解决方法
destoon调用自定义模板及样式的公告栏
destoon复制新模块的方法
destoon找回管理员密码的方法
destoon会员注册提示“数据校验失败(2)”解决方法
ThinkPHP之getField详解
ThinkPHP的Widget扩展实例
ThinkPHP3.1的Widget新用法
PHP中strlen()和mb_strlen()的区别浅析
PHP中使用gettext解决国际化问题的例子(i18n)
codeigniter集成ucenter1.6双向通信的解决办法
PHP资源管理框架Assetic简介
PHP开源开发框架ZendFramework使用中常见问题说明及解决方案
在PHP中使用X-SendFile头让文件下载更快
php中$美元符号与Zen Coding冲突问题解决方法分享
php下获取http状态的实现代码
php实现httpclient类示例
xss防御之php利用httponly防xss攻击
php中调用其他系统http接口的方法说明
实现获取http内容的php函数分享
sae使用smarty模板的方法
phpstrom使用xdebug配置方法
php使用curl发送json格式数据实例
Server.HTMLEncode让代码在页面里显示为源代码
php 模拟 asp.net webFrom 按钮提交事件的思路及代码
关于JSON以及JSON在PHP中的应用技巧
浅析echo(),print(),print_r(),return之间的区别
json的键名为数字时的调用方式(示例代码)
php解析xml提示Invalid byte 1 of 1-byte UTF-8 sequence错误的处理方法
PHP PDOStatement:bindParam插入数据错误问题分析
PHP反射类ReflectionClass和ReflectionObject的使用方法
php5.3 不支持 session_register() 此函数已启用的解决方法
php file_get_contents抓取Gzip网页乱码的三种解决方法
PHP set_error_handler()函数使用详解(示例)
PHP使用SOAP调用.net的WebService数据
PHP开发工具ZendStudio下Xdebug工具使用说明详解
php中用socket模拟http中post或者get提交数据的示例代码
如何使用php判断服务器是否是HTTPS连接
浅析HTTP消息头网页缓存控制以及header常用指令介绍
深入apache配置文件httpd.conf的部分参数说明
PHP 使用header函数设置HTTP头的示例解析 表头
©2014-2024 dbsqp.com