使用PHP的Curl Post片段正在使用localhost但不在我的托管网页上

时间:2015-09-07 12:42:44

标签: php curl xmlhttprequest

我在本地和在线使用相同的代码片段。 在我的localhost服务器上,我得到HTTP状态代码200,我没有问题。 当我在我当前正在托管的网页上使用相同的代码时,我得到的HTTP代码为0.

以下是我用于HTTP呼叫的代码段。

$curl = curl_init();

// Set the options
curl_setopt($curl,CURLOPT_URL, "http://xx.xxxxxxxxxx.xxx:xxxx/xx");

// This sets the number of fields to post
curl_setopt($curl,CURLOPT_POST, 1);

// This is the fields to post.
curl_setopt($curl,CURLOPT_POSTFIELDS, "Data");

//execute the post
$session = curl_exec($curl);
//Echo Http Response Code
$httpcode = curl_getinfo($curl, CURLINFO_HTTP_CODE);

//close the connection
curl_close($curl);

有什么想法吗?

0 个答案:

没有答案