如何获得请求的uri

时间:2011-05-14 19:10:13

标签: php ip-address

我想在PHP上获取请求的URI。

我的意思是将$address存储到www.mywebsite.com/index.php?param=1中。例如。

由于

2 个答案:

答案 0 :(得分:4)

没有域名的路径存储在$_SERVER['REQUEST_URI']中。在您的情况下,它将是/index.php?param=1

答案 1 :(得分:2)

$address = $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];