答案 0 :(得分:2)
在通过$ _GET传递数据之前,最好在PHP中使用urlencode()函数。然后在接收端使用urldecode()。
答案 1 :(得分:0)
str_replace()
怎么样?
使用
发送城市$cityurl = str_replace(' ', '_',$cityurl);//replace spaces with "_"
链接是
http://www.teste.com/?city=$cityurl //url is like http://www.teste.com/?city=São_Paulo
通过
接收城市$city = str_replace('_', ' ',$_GET['city']);//replace "_" with spaces