こんにちは、クライアントに次のようなコードがあります。
<?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);
?>
これを別のサーバーでテストしたところ、期待どおりの出力が得られました。プロキシが作成している問題はありますか?