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);Array
print_r($a);
(
[fid] => 8
[type] => 1
[hot] => 2
[other] => 6
[page] => 3
)