curl和file_get_contents都没有返回

时间:2015-07-07 13:21:00

标签: php curl

我有一个可以在我尝试的每台服务器上运行的php,但不是一个。

if (function_exists('curl_version')){
        $ch = curl_init($base_path);
        curl_setopt($ch, CURLOPT_TIMEOUT, 5);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        $data = curl_exec($ch);
        curl_close($ch);            
    }
    else if( ini_get('allow_url_fopen') ) {
    $data = file_get_contents($base_path);
    } 
    else{

        $data =0;       
        echo 'nothing installed';
    }

问题是curl和allow_url_open都配置正确。

你知道该服务器有什么问题吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

好吧,既然我花了几个小时,我就是用javascript做的,以免浪费时间。