cURL脚本在本地主机上工作,而不是在实时服务器上


cURL script working on localhost but not on live server

我正试图通过脚本发送短信。我使用curl在供应商服务器上运行发送短信的API。Fopen和file_get_contents在我的服务器上被阻止。所以,cURL是我唯一的选择。

脚本:-

// Initialize options for REST interface
$adb_url="http://example.com";
$adb_option_defaults = array(
    CURLOPT_HEADER => false,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_TIMEOUT => 2
  ); 
// ArangoDB REST function.
// Connection are created demand and closed by PHP on exit.
function adb_rest($method,$uri,$query=NULL,$json=NULL,$options=NULL){
    global $adb_url,$adb_handle,$adb_option_defaults;
    // Connect 
    if(!isset($adb_handle)) $adb_handle = curl_init();
    // Compose query
    $options = array(
    CURLOPT_URL => $adb_url.$uri."?".$query,
    CURLOPT_CUSTOMREQUEST => $method, // GET POST PUT PATCH DELETE HEAD OPTIONS 
    CURLOPT_POSTFIELDS => $json,
    CURLOPT_PORT => 8080,
    CURLOPT_HTTPHEADER => Array('Content-type: text/plain')
    ); 
    curl_setopt_array($adb_handle,($options + $adb_option_defaults)); 
    // send request and wait for responce
    $responce =  curl_exec($adb_handle);
    print_r(curl_getinfo($adb_handle));
    return($responce);
}
// Create a collection
$responce = adb_rest("GET","/bulksms/bulksms","username=xxx&password=xxx&type=2&dlr=1&destination=xxx&source=xxx&message=xxxxxx",'');

实时服务器cURL响应:

Array ( 
   [url] => http://example.com/bulksms/bulksms?
username=xxx&password=xxx&type=2&dlr=1&destination=xxx&source=xxx&message=xxxxxx 
   [content_type] => 
   [http_code] => 0 
   [header_size] => 0 
   [request_size] => 0 
   [filetime] => -1 
   [ssl_verify_result] => 0 
   [redirect_count] => 0 
   [total_time] => 1.999604 
   [namelookup_time] => 1.315312 
   [connect_time] => 0 
   [pretransfer_time] => 0 
   [size_upload] => 0 
   [size_download] => 0 
   [speed_download] => 0 
   [speed_upload] => 0 
   [download_content_length] => -1
   [upload_content_length] => -1
   [starttransfer_time] => 0 
   [redirect_time] => 0 [certinfo] => Array ( ) [redirect_url] => )    

Localhost cURL响应:

Array (
   [url] => http://example.com/bulksms/bulksms?
username=xxx&password=xxx&type=2&dlr=1&destination=xxx&source=xxx&message=xxxxxx 
   [content_type] => text/plain
   [http_code] => 200
   [header_size] => 129
   [request_size] => 646
   [filetime] => -1
   [ssl_verify_result] => 0
   [redirect_count] => 0
   [total_time] => 0.14 
   [namelookup_time] => 0
   [connect_time] => 0.047
   [pretransfer_time] => 0.047
   [size_upload] => 0
   [size_download] => 54
   [speed_download] => 385
   [speed_upload] => 0 
   [download_content_length] => 54
   [upload_content_length] => 0
   [starttransfer_time] => 0.14
   [redirect_time] => 0
   [certinfo] => Array ( )
   [primary_ip] => xxx.xxx.xxx.xxx 
   [primary_port] => 8080
   [local_ip] => xxx.xxx.x.xxx
   [local_port] => 56359
   [redirect_url] => )    

通过localhost,我得到一条短信,而通过服务器,我没有。

更新-php版本:

PHP Version 5.4.3

服务器版本:

PHP Version 5.3.27

这很难说,但我建议在CURLOPT_TIMEOUT之外再添加CURLOPT_CONNECTTIMEOUT到您的curl选项中。在本例中,我将CURLOPT_CONNECTTIMEOUT设置为5。并将CURLOPT_HTTPGET设置为TRUE。此外,还可以添加CURLOPT_USERAGENT,以防远程服务器需要作为用户代理:

// Compose query
$options = array(
CURLOPT_URL => $adb_url.$uri."?".$query,
CURLOPT_CUSTOMREQUEST => $method, // GET POST PUT PATCH DELETE HEAD OPTIONS 
CURLOPT_POSTFIELDS => $json,
CURLOPT_PORT => 8080,
CURLOPT_HTTPGET => TRUE,
CURLOPT_CONNECTTIMEOUT => 5,
CURLOPT_USERAGENT => "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)",
CURLOPT_HTTPHEADER => Array('Content-type: text/plain')
); 
curl_setopt_array($adb_handle,($options + $adb_option_defaults)); 

另外,不清楚本地安装的PHP版本是否与服务器相同。