Rumah > php教程 > php手册 > teks badan

PHP获取当前页面完整URL的实现代码

WBOY
Lepaskan: 2016-06-13 11:48:47
asal
919 orang telah melayarinya

javascript实现:

复制代码 代码如下:


top.location.href   顶级窗口的地址 this.location.href  当前窗口的地址


PHP实现:

复制代码 代码如下:


#测试网址:     http://localhost/blog/testurl.php?id=5
//获取域名或主机地址 echo $_SERVER['HTTP_HOST']."
"; #localhost
//获取网页地址 echo $_SERVER['PHP_SELF']."
"; #/blog/testurl.php
//获取网址参数 echo $_SERVER["QUERY_STRING"]."
"; #id=5
//获取用户代理 echo $_SERVER['HTTP_REFERER']."
";
//获取完整的urlecho 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; echo 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING']; #http://localhost/blog/testurl.php?id=5
//包含端口号的完整urlecho 'http://'.$_SERVER['SERVER_NAME'].':'.$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];  #http://localhost:80/blog/testurl.php?id=5
//只取路径$url='http://'.$_SERVER['SERVER_NAME'].$_SERVER["REQUEST_URI"];  echo dirname($url); #http://localhost/blog


sumber:php.cn
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Cadangan popular
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan