2-3 路由类 中 最后$_GET本身会获取一个地址值!
2-3 路由类 中 最后$_GET本身会获取一个地址值 如下
Array ( [/index/index/id/1/str/2/test/4] => [id] => 1 [str] => 2 [test] => 4 )
在while之前加上 unset($_GET) 才会显示
Array ( [id] => 1 [str] => 2 [test] => 4 )
请问老师的为什么不需要 在while之前加 unset($_GET),就能显示如下:
Array ( [id] => 1 [str] => 2 [test] => 4 )
?