javascript implémentation :
top.location.href L'adresse de la fenêtre de niveau supérieur
this.location.href L'adresse de la fenêtre actuelle
Implémentation PHP
URL de test : http://localhost/blog/testurl.php?id=5
//Obtenir le nom de domaine ou l'hébergeur adresse
echo $_SERVER['HTTP_HOST']."
Sortie localhost
//Obtenir l'adresse de la page Web
echo $_SERVER['PHP_SELF']. "
Sortie /blog/testurl. php
//Obtenir les paramètres de l'URL
echo $_SERVER["QUERY_STRING"]."
Identifiant de sortie=5
//Obtenir l'agent utilisateur
echo $_SERVER['HTTP_REFERER']."
//Obtenir l'url complète
echo 'http://'.$_SERVER ['HTTP_HOST'].$_SERVER['REQUEST_URI' ];
echo 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING '];
Sortie http://localhost /blog/testurl.php?id=5
//URL complète incluant le numéro de port
echo 'http://'.$_SERVER[' SERVER_NAME'].':'.$_SERVER[ "SERVER_PORT"].$_SERVER["REQUEST_URI"];
Sortie http://localhost:80/blog/testurl.php?id=5
//Prendre uniquement le chemin
$url ='http://'.$_SERVER['SERVER_NAME'].$_SERVER["REQUEST_URI"];
echo dirname($url );
sortie http://localhost/ blog
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!