嗨,我在客户端上有一段代码如下:
<?php
$curl = curl_init();
// Set some options - we are passing in a useragent too here
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'http://xx.xx.xxx.xxx:9000/postpara.php', //xx.xx.xxx.xxx is the public ip
CURLOPT_USERAGENT => 'Codular Sample cURL Request',
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => array(
item1 => 'value',
item2 => 'value2'
)
));
// Send the request & save response to $resp
$resp = curl_exec($curl);
// Close request to clear up some resources
curl_close($curl);
echo $resp;
?>
我的服务器代码位于代理服务器后面,本地 ip =“192.168.12.23”。我已经完成了端口转发,公共 IP xx.xx.xxx.xxx:9000 正确指向了本地 ip。但是,我无法从此服务器代码中获得任何响应。服务器代码如下:
<?php
$items1 = $_POST["item1"];
$items2 = $_POST["item2"];
print($items1 . $items2);
?>
我已经在另一台服务器上对此进行了测试,它给了我预期的输出。代理是否有任何问题?