• 购物车 

    我的购物车

    件商品
    去购物车结算
  • 在线充值 
  • 提交工单
  • 备案平台
  • 帮助中心

欢迎您来到风易在线

php获取https内容出错

最近风易用PHP做人人网的登录接口,在liunx主机上一直正常,移植到windows主机上就杯具了,一直出错。

用file_get_contents,抓取内容会报错;

程序代码$url = (https://graph.renren.com/oauth/token”);
file_get_contents($url);

输出错误信息:
Warning: file_get_contents(https://graph.renren.com/oauth/token) [function.file-get-contents]: failed to open stream: No such file or directory in index.php on line 3

用curl的方式也不行,要抓狂了,后来东搜西看的发现这个curl_setopt说明,加了二个参数,搞定!
程序代码
$url = (https://graph.renren.com/oauth/token);
$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);
?>

没错了,加的就是加粗这二行。