如何使用 PHP 和 cURL 转发 $_POST?
Posted
技术标签:
【中文标题】如何使用 PHP 和 cURL 转发 $_POST?【英文标题】:How can I forward $_POST with PHP and cURL? 【发布时间】:2011-02-13 02:33:17 【问题描述】:我在我的 php 脚本中收到一个 POST 请求,并希望也使用 POST 将此 POST 调用转发到另一个脚本。我该怎么做?
如果此操作需要,我可以使用 cURL。
【问题讨论】:
您的 PHP 脚本是否需要访问从转发的 POST 发回的响应? 【参考方案1】:也许:
curl_setopt($ch, CURLOPT_POSTFIELDS, $_POST);
来自curl_setopt:
这既可以作为 urlencoded 字符串(如“para1=val1¶2=val2&...”)传递,也可以作为以字段名称作为键、字段数据作为值的数组传递。
【讨论】:
你以前试过这个吗?使用我使用的 CURL 版本,这将发送“multipart/form-data”中的字段,而不是常规帖子。 我以前从未尝试过,但是 PHP 文档在记录功能方面确实做得很好。 这是大多数时候的答案。但是,如果您在帖子内容中传递了深层变量(例如“...&var1[var2]=val&...”),它将不起作用(var1
将作为空数组传递)。 ZZCoder 下面的答案(使用http_build_query()
)是(完整的)正确答案。【参考方案2】:
这样做,
curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($_POST));
【讨论】:
这成功了!谢谢你。 http_build_query() 是必须的,否则不起作用。【参考方案3】:这是一个功能齐全的 cURL 请求,可将 $_POST 重新路由到您想要的位置(基于 ZZ coder's reply)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://urlOfFileWherePostIsSubmitted.com");
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
// ZZ coder's part
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($_POST));
$response = curl_exec($ch);
curl_close($ch);
【讨论】:
【参考方案4】:<?php
function executeCurl($arrOptions)
$mixCH = curl_init();
foreach ($arrOptions as $strCurlOpt => $mixCurlOptValue)
curl_setopt($mixCH, $strCurlOpt, $mixCurlOptValue);
$mixResponse = curl_exec($mixCH);
curl_close($mixCH);
return $mixResponse;
// If need any HTTP authentication
$username = 'http-auth-username';
$password = 'http-auth-password';
$requestType = 'POST'; // This can be PUT or POST
// This can be $arrPostData = $_POST;
$arrPostData = array(
'key1' => 'value-1-for-k1y-1',
'key2' => 'value-2-for-key-2',
'key3' => array(
'key31' => 'value-for-key-3-1',
'key32' => array(
'key321' => 'value-for-key321'
)
),
'key4' => array(
'key' => 'value'
)
);
// You can set your POST data
$postData = http_build_query($arrPostData); // Raw PHP array
$postData = json_encode($arrPostData); // ONLY use this when requesting JSON data
$arrResponse = executeCurl(array(
CURLOPT_URL => 'http://whatever-your-request-url.com/xyz/yii',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPGET => true,
CURLOPT_VERBOSE => true,
CURLOPT_AUTOREFERER => true,
CURLOPT_CUSTOMREQUEST => $requestType,
CURLOPT_POSTFIELDS => $postData,
CURLOPT_HTTPHEADER => array(
"X-HTTP-Method-Override: " . $requestType,
'Content-Type: application/json', // ONLY use this when request json data
),
// If HTTP authentication is required , use the below lines
CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
CURLOPT_USERPWD => $username. ':' . $password
));
【讨论】:
以上是关于如何使用 PHP 和 cURL 转发 $_POST?的主要内容,如果未能解决你的问题,请参考以下文章