PHP Determining the current url

前端 未结 5 932
悲哀的现实
悲哀的现实 2021-01-13 15:15

I need to modify my function to return also the current folder I am in. Here is my current function:

function getLinkFromHost($url){  
    $port = $_SERVER[\         


        
5条回答
  •  离开以前
    2021-01-13 16:06

    Here a short sweet function I've been using to do this for awhile now.

    function curPageURL() {
     $pageURL = 'http';
     if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
     $pageURL .= "://";
     if ($_SERVER["SERVER_PORT"] != "80") {
      $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
     } else {
      $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
     }
     return $pageURL;
    }
    

    I can't take the credit, it belongs to:

    http://www.webcheatsheet.com/PHP/get_current_page_url.php

提交回复
热议问题