curl_exec()不会抛出响应

时间:2013-01-14 07:24:30

标签: php curl portforwarding

您好我在客户端上有一段代码如下:

   <?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);
?>

我在不同的服务器上测试了它,它按预期给出了输出。代理是否有任何问题?

0 个答案:

没有答案