我希望你能帮助我;
如何在php中转换数组中的urlcode?
示例:
$Urlcode = 'name=luiz&country=Brazil&city=patrociniomg';我需要在数组中转换这个$Urlcode,有人知道吗?
现在感谢所有人
发布于 2010-07-06 11:00:33
parse_str
http://www.php.net/manual/en/function.parse-str.php
发布于 2010-07-06 11:02:17
使用parse_str(),它完全可以完成您想要的操作
http://www.php.net/manual/en/function.parse-str.php
https://stackoverflow.com/questions/3183224
复制相似问题