我在本地和在线使用相同的代码片段。 在我的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);
有什么想法吗?