我有一个关于在 php 中格式化 URL 参数的问题
第 1 页可以有这 2 个 url
http://somewhere.com/page1.php?foo=1
and
http://somewhere.com/page1.php
现在在第 1 页,当我单击一个按钮时,我希望它重定向到它自己,但在 URL 中添加一个额外的参数,如下所示
http://somewhere.com/page1.php?foo=1&bar=2
or
http://somewhere.com/page1.php?bar=2
取决于当前的网址。我怎么能在php中做到这一点?
谢谢, 维杜