我想使用短信網關的應用程序稱爲SMSGateway與HTTP頭請求使用捲曲如下;HTTP頭請求超時在服務器上
$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL,"http://182:70.76.188:9090/sendsms?phone=$phone&text=$message1&password=xxxxxxxx");
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 10000);
curl_setopt($curl_handle, CURLOPT_TIMEOUT,50000);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; rv:36.0) Gecko/20100101 Firefox/36.0');
$query = curl_exec($curl_handle);
if($query){echo "Message Sent to $phone !<br>";}else{echo "Message Not Sent to $phone !<br>";echo 'Curl error: ' . curl_error($curl_handle)."<br>";}
curl_close($curl_handle);
這工作完全正常我的本地系統上,但是從服務器中執行時,它就會超時......
我需要知道什麼是錯的...是捲曲的問題?我應該使用file_get_contents嗎?其實我也嘗試的file_get_contents ......沒有工作過..
你好像給一個ip地址是不是服務器訪問?它不斷嘗試連接,但無法達到目標。 –
但它從我的本地運行時的作品系統 – user2444559
它在當地工作,因爲你的本地系統能夠達到你的IP地址,但服務器無法找到IP,因爲它是一個遠程服務器。 –