我在网站上有一个非常简单的脚本。该脚本正在向我可以控制的另一个站点发送 HTTP POST。我了解如何使用 cURL 发送 POST,但是我发送它的脚本必须在它上面做出响应吗?
例如,这是发送 POST 的代码(如果此脚本回显站点 B 的响应,我希望它,但我什至不知道如何让站点 B 响应该帖子):
<?php
//
// A very simple PHP example that sends a HTTP POST to a remote site
//
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://www.mysite.com/tester.phtml");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
"postvar1=value1&postvar2=value2&postvar3=value3");
// receive server response ...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec ($ch);
curl_close ($ch);
echo $server_output;
?>
然后站点 b,在上面的 POST 发送到的 URL 处,有以下代码:
<?php
$postvar1 = $_POST['postvar1'];
if ($postvar1="apples and oranges") {
$echo "This is what you see if postvar1 has been posted and is equal to apples and oranges"; } else {echo "this is what you see if postvar1 has not been posted or is not equal to apples and oranges"; }
?>
站点 B 上的脚本需要做什么才能根据脚本中的“if 逻辑”响应屏幕上显示的文本?