首页 > 后端开发 > php教程 > linux - php使用Curl调用接口 速度非常慢, 把 域名换成Ip速度就正常啦.

linux - php使用Curl调用接口 速度非常慢, 把 域名换成Ip速度就正常啦.

WBOY
发布: 2016-06-06 20:09:18
原创
1751 人浏览过

function requestCurl($url,$type = 'get',$data=NULL)

<code>{
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false); 
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    if('post'==$type){
        curl_setopt($ch, CURLOPT_POST, true);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    }else if('delete'==$type){
        curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, "DELETE");   
        curl_setopt($ch, CURLOPT_POSTFIELDS,$data);
    }else if('put'==$type){
        curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, "PUT");   
        curl_setopt($ch, CURLOPT_POSTFIELDS,$data);
    }
    curl_setopt($ch, CURLOPT_URL,$url);
    $infos = curl_exec($ch);
    curl_close($ch);
    return $infos;
}</code>
登录后复制
登录后复制

在主机ping也可以. 大神求指导 不胜感激

回复内容:

function requestCurl($url,$type = 'get',$data=NULL)

<code>{
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false); 
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    if('post'==$type){
        curl_setopt($ch, CURLOPT_POST, true);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    }else if('delete'==$type){
        curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, "DELETE");   
        curl_setopt($ch, CURLOPT_POSTFIELDS,$data);
    }else if('put'==$type){
        curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, "PUT");   
        curl_setopt($ch, CURLOPT_POSTFIELDS,$data);
    }
    curl_setopt($ch, CURLOPT_URL,$url);
    $infos = curl_exec($ch);
    curl_close($ch);
    return $infos;
}</code>
登录后复制
登录后复制

在主机ping也可以. 大神求指导 不胜感激

dns域名解析问题而已。其实我也不太懂。你最好做个配置 把相应域名转换为ip

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板