如何在php中编码和解码url查询字符串

时间:2014-04-05 15:47:34

标签: php jquery

我在jquery中调用一个事件处理程序进行搜索。搜索值在jquery中附加url字符串并将其发送给php。 我原来的网址

www.sit.com/index.php?search=a&b

我使用

对此搜索字符串进行编码
var search = encodeURIComponent(search);
www.site.com/index.php?search=(encoded search)

但我不知道如何解码此搜索字符串以执行。请帮助如何在PHP中解码此字符串。感谢

1 个答案:

答案 0 :(得分:1)

使用urldecode(your_string)功能。