欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-24 18:41:55
...
function requestCurl($url,$type = 'get',$data=NULL)
{
    $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;
}

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

回复内容:

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

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

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

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

相关标签: php linux nginx