欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

如何把这段url 转换成应格式数组?

程序员文章站 2022-06-15 08:15:35
...
fid=8&type=1&hot=2&other=6&page=3



Array
(
[fid] => 8
[type] => 1
[hot] => 2
[other] => 6
[page] => 3
)


回复讨论(解决方案)

parse_str('fid=8&type=1&hot=2&other=6&page=3', $a);print_r($a);
Array
(
[fid] => 8
[type] => 1
[hot] => 2
[other] => 6
[page] => 3
)

谢谢版主,我还不知道有这个函数