0

我在使用 curl 时遇到问题:我从 Mysql(城市名称)获取数据,这些数据使用 ascii HEX 编码的变音符号(例如 %DF 表示 ß 或 %DC 表示 ü )。我用 str_replace() 转换它们;到德语变音符号 (ß,ü,ä,ö)。当我使用 curl 发送数据(城市)时出现错误。(“填写正确的!”)

当我发送没有变音符号(ä、ö、ü、ß)的数据时,一切都很好!我的代码或 curl 有什么问题。我也用 shell 试过了——同样的问题!

$this->url = "blah.org/?params=diesdas&city_from=Straßbourg&City_to=München";

$this->ckfile = tempnam("/tmp", "cookie");
$this->ch = curl_init();
curl_setopt($this->ch,CURLOPT_URL, $this->url);
curl_setopt($this->ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($this->ch, CURLOPT_PROXY, "46.4.248.80");
curl_setopt($this->ch, CURLOPT_PROXYPORT, "3128");
curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($this->ch, CURLOPT_COOKIEJAR, $this->ckfile);
echo 'getting cookie file...';
$cookie = curl_exec($this->ch);
if($cookie = false){echo 'couldn\'t get cookie!<br> '.curl_error($this->ch);}else{echo 'got cookie! omnomnom!<br>';}

$this->ch = curl_init("blah.com/sendcookietome");
curl_setopt($this->ch, CURLOPT_COOKIEFILE, $this->ckfile);
curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($this->ch, CURLOPT_PROXY, "46.4.248.80");
curl_setopt($this->ch, CURLOPT_PROXYPORT, "3128");
curl_exec($this->ch);

最好的,meeeeh!

4

3 回答 3

0

为您的城市使用 rawurlencode()。

http://php.net/manual/en/function.rawurlencode.php

你也拼错了Straßburg那里的表格....

在您的示例中:

$cityname =rawurlencode('Straßburg');

$url ='http://bahn.ltur.com/index/search/?mnd=de&lang=de_DE&searchin=DE-SB-VI&trip_mode=trip_simple&from_spar='.$cityname.'&to_spar=Haiger&start_datum=04.07.2012&start_time=06%3A30&end_datum=06.07.2012&end_time=16%3A42&SEA_adults=1&SEA_kids1=0&SEA_kids2=0&SEA_adult1=&SEA_adult2=&SEA_adult3=&SEA_adult4=&SEA_adult5=&SEA_kid11=&SEA_kid12=&SEA_kid13=&SEA_kid14=&SEA_kid15=&trainclass_spar=2&x=54&y=15
';

//do your curl thing..
于 2012-07-04T14:50:07.930 回答
0

如果您在 GET 或 POST 数据中使用字符,则需要对字符进行 url 编码。不要解码它们。

于 2012-07-03T20:03:56.570 回答
0

我让它工作:wow.wtf?

此链接适用于“ß”:blah.org/&from_spar=Straßburg&to_spar=Kiel+Hbf blah.org/&from_spar=Köln+Hbf&to_spar=Stuttgart+Hbf

这就是它被接受的方式。

于 2012-07-06T09:32:18.853 回答