#Test URL: http://localhost/blog/testurl.php?id=5// Get domain name or host address echo $_SERVER['HTTP_HOST'].""; #localhost//Get the web page address echo $_SERVER['PHP_SELF'].""; #/bl"/> #Test URL: http://localhost/blog/testurl.php?id=5// Get domain name or host address echo $_SERVER['HTTP_HOST'].""; #localhost//Get the web page address echo $_SERVER['PHP_SELF'].""; #/bl">

Home >Backend Development >PHP Tutorial >Some methods for php to get the currently visited url php current url php get the current page url php request ur

Some methods for php to get the currently visited url php current url php get the current page url php request ur

WBOY
WBOYOriginal
2016-07-29 08:51:441568browse

data-id="1190000005008979" data-license="cc">

<code>#测试网址:     http://localhost/blog/testurl.php?id=5

//获取域名或主机地址 
echo $_SERVER['HTTP_HOST']."<br>"; #localhost

//获取网页地址 
echo $_SERVER['PHP_SELF']."<br>"; #/blog/testurl.php

//获取网址参数 
echo $_SERVER["QUERY_STRING"]."<br>"; #id=5

//获取用户代理 
echo $_SERVER['HTTP_REFERER']."<br>"; 

//获取完整的url
echo '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

//包含端口号的完整url
echo '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</code>

The above introduces some methods for PHP to obtain the currently visited URL, including PHP and URL content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn