一、利用j**ascript實現:
top.location.href頂級視窗的位址
this.location.href當前視窗的位址
二、利用php實現
//獲取網域名稱或主機位址 程式設計客棧
//獲取網頁位址
echo $_server['php_self']; #/php/xx.php
//獲取**引數
echo $_server["query_程式設計客棧string"]; #id=5
//獲取使用者**
//獲取完整的url
echo 'http://'.$_server['http_程式設計客棧host'].$_server['php_self'].'?'.$_server['query_string'];
//包含埠號的完整url
//只取路徑
總結本文標題: php獲取當前頁面完整url的方法
本文位址: /ruanjian/j**a/172008.html
php獲取當前頁面的完整url
j ascript實現 top.location.href 頂級視窗的位址 this.location.href 當前視窗的位址 php實現 測試 http localhost blog test.php?id 1 獲取網域名稱或主機位址 獲取網頁位址 echo server php self bl...
PHP中獲取當前頁面的完整URL
top.location href 頂級視窗的位址 this.location href 當前視窗的位址 測試 http localhost blog testurl.php?id 5 獲取網域名稱或主機位址 獲取網頁位址 echo server php self blog testurl.php ...
PHP中獲取當前頁面的完整URL
1 來自 http 測試 http localhost blog testurl.php?id 545 獲取網域名稱或主機位址 獲取網頁位址 9echo server php self blog testurl.php 1011 獲取 引數 12echo server query string id...