【PHP】取得目前所在的網址

假設我們的網址是 https://izo.tw/index.php?code=123

echo $_SERVER['HTTP_HOST'];   //顯示 izo.tw
echo $_SERVER['REQUEST_URI'];  //顯示 /index.php?code=123
echo $_SERVER['PHP_SELF'];    //顯示 /index.php
echo $_SERVER['QUERY_STRING'];  //顯示 code=123

所以目前所在的網址為

$URL='http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
echo $URL;