我正在从 POST 接收数据,现在我想使用 curl 转发这些数据。
问题是我的代码没有发布像 ÅÄÖ 这样的特殊字符。它们包含在 $postdata 中,但是当我查看接收服务器时,缺少特殊字符。
有没有更好的方法来为 cUrl 准备数据?像预建功能之类的东西?如何包含 ÅÄÖ:s?
这是代码:
foreach ($_POST as $var => $value) {
if ($var != "ignore") {
$postdata=$postdata . urlencode(str_replace("_", "." , $var)) . "=" . $value . "&";
}
}
//remove the extra comma
$postdata=substr($postdata,0,-1);
//Submit the form fields
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL,$googleformURL);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt ($ch, CURLOPT_TIMEOUT, 60);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt ($ch, CURLOPT_POST, 1);
$data = curl_exec ($ch);
curl_close($ch);