如何获取请求的uri
我想在 PHP 上获取请求的 URI。
例如,我的意思是将字符串 www.mywebsite.com/index.php?param=1
存储到 $address
中。
谢谢
I'd like on PHP get the requested URI.
I mean to store into $address
the string www.mywebsite.com/index.php?param=1
for example.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不带域名的路径存储在
$_SERVER['REQUEST_URI']< /代码>
。在您的情况下,它将是
/index.php?param=1
。The path without domain name is stored in
$_SERVER['REQUEST_URI']
. In your case, it would be/index.php?param=1
.