// http://example.com?p1=v1&p2=v2&p3=v3&p1=v4&p2=v5 var_dump($_GET['p1']; // output v1这样测试出来只得到v1,开始我以为后来的参数会覆盖前边的参数,结果不是,而且也没有什么错误。 查看完整描述