Home > Web Front-end > JS Tutorial > body text

How to get the content of the current url with js and php_javascript skills

WBOY
Release: 2016-05-16 17:21:52
Original
886 people have browsed it

#Test URL: http://localhost/blog/testurl.php?id=5

Copy code The code is as follows:

//Get the domain name or host address
echo $_SERVER['HTTP_HOST']."
"; #localhost

//Get the web page address
echo $_SERVER['PHP_SELF']."
"; #/blog/testurl.php

//Get URL parameters
echo $_SERVER["QUERY_STRING"]."
"; #id=5

//Get the user agent
echo $_SERVER['HTTP_REFERER']."
";

//Get the complete 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

//Full url including port number
echo 'http://'.$_SERVER['SERVER_NAME'].':'.$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
#http://localhost:80/blog/ testurl.php?id=5

//Get only the path
$url='http://'.$_SERVER['SERVER_NAME'].$_SERVER["REQUEST_URI"];
echo dirname($url);
#http://localhost/blog

javascript implementation:
Copy code The code is as follows:

top.location.href The address of the top-level window
this.location.href The address of the current window
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!