解决file_get_contents无法请求https连接的方法
@H_502_0@错误: Warning: fopen() [function.fopen]: Unable to find the wrapper "https" - did you forget to enable it when you configured PHP?
@H_
502_0@
解决方案有3:
@H_
502[email protected]下的
PHP,只需要到
PHP.ini中把extension=
PHPopenssl.dll前面的;删掉,重启服务就可以了。
@H502[email protected]下的
PHP,就必须安装openssl模块,安装好了以后就可以访问了。
@H_
502_0@3.如果服务器你不能
修改配置的话,那么就使用curl
函数来替代file_get_contents
函数,当然不是简单的替换啊。还有相应的参数配置才能正常使用curl
函数。
@H_
502_0@对curl
函数封装如下:
@H_
502_0@<div class="codetitle">
<a style="CURSOR: pointer" data="96247" class="copybut" id="copybut96247" onclick="doCopy('code96247')"> 代码如下: <div class="codebody" id="code96247">
function
HTTP_Request($url,$timeout=30,$header=array()){
if (!function_exists('curl_init')) {
throw new Exception('server not install curl');
}
$ch = curl_init();
curl_s
etopt($ch,CURLOPT_RETURNTRANSFER,true);
curl_s
etopt($ch,CURLOPT_HEADER,CURLOPT_URL,$url);
curl_s
etopt($ch,CURLOPT_TIMEOUT,$timeout);
if (!emptyempty($header)) {
curl_s
etopt($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_s
etopt($ch,false);
$data = curl_exec($ch);
} if ($data == false) {
curl_close($ch);
}
@curl_close($ch);
return $data;
}