Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use this code to get the full URL:

$actual_link = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];

The problem is that I use some masks in my .htaccess, so what we see in the URL is not always the real path of the file.

What I need is to get the URL, what is written in the URL, nothing more and nothing less—the full URL.

I need to get how it appears in the Navigation Bar, and not the real path of the file in the server.

share|improve this question

8 Answers

up vote 68 down vote accepted

Have a look at $_SERVER['REQUEST_URI'], i.e.

$actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";

(Note that the double quoted string syntax is perfectly correct)

share|improve this answer
it just returns the folder, but not the domain name. How do I add the domain name too in this string? – DiegoP. Jul 20 '11 at 21:35
ok but if the path is ending with a file.. example index.html, it will not work....how do I get the full URL, whatever it is inside the URL..is there a way? – DiegoP. Jul 20 '11 at 21:40
1  
add the domain name the same way you did it with $_SERVER[HTTP_HOST] - see my updated answer. – ax. Jul 20 '11 at 21:41
Wonderful.. Thanks a lot – pixelngrain Jan 15 at 19:01
1  
What if you're on a https link? What if HTTP_HOST is not available or has been tampered with by client side? This answer seems incomplete and unreliable. – Manachi Apr 5 at 2:07
show 1 more comment
function full_url()
{
    $s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : "";
    $sp = strtolower($_SERVER["SERVER_PROTOCOL"]);
    $protocol = substr($sp, 0, strpos($sp, "/")) . $s;
    $port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]);
    return $protocol . "://" . $_SERVER['SERVER_NAME'] . $port . $_SERVER['REQUEST_URI'];
}
$actual_link = full_url();

based on: http://snipplr.com/view.php?codeview&id=2734

it does not include username:password from a full url scheme://username:password@domain:port/path?query_string#fragment_id


Notes

HTTP_HOST is a client (e.g. browser) controlled variable and is not always available according to comments in the php manual: http://php.net/manual/en/reserved.variables.php

SERVER_NAME is a server controlled variable and needs to be set in the server (config) and is not available for IPv6 according to kralyk

HTTP_HOST vs. SERVER_NAME

share|improve this answer
1  
This code will fail if the server is given by IPv6 IP address. To fix that, replace SERVER_NAME with HTTP_HOST. – kralyk Nov 22 '12 at 17:05
note: $_SERVER['REQUEST_URI'] will show /example?foo=bar2 for url like /example?foo=bar1&foo=bar2 – Timo Huovinen May 9 at 13:36

For that matter, just have a look at the whole array with print_r($_SERVER), you'll see everything you need there :)

share|improve this answer
18  
+1, don't give the fish, give the fishing rod! :)) – Mārtiņš Briedis Jul 20 '11 at 21:36
Haha. +1 for the line – henasraf Jul 20 '11 at 21:47
+1 @MārtiņšBriedis: giggle – ShadowStorm Oct 22 '12 at 22:37
+1 for martin from me. cheers! – Robi Jan 2 at 18:05

I know this is an old post, but I thought this might be helpful for anyone who reads this in the future...

$url = "http" . (($_SERVER['SERVER_PORT']==443) ? "s://" : "://") . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];

The smallest and easiest way to do this, assuming one's web server is using the standard Port 443 for HTTPS.

share|improve this answer
function full_url()
{
$s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : "";
$protocol = substr(strtolower($_SERVER["SERVER_PROTOCOL"]), 0, strpos(strtolower($_SERVER["SERVER_PROTOCOL"]), "/")) . $s;
$port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]);
$uri = $protocol . "://" . $_SERVER['SERVER_NAME'] . $port . $_SERVER['REQUEST_URI'];
$segments = explode('?', $uri, 2);
$url = $segments[0];
return $url;
}

^ Just made a update to "Timo Huovinen's" code, so you wont get any get's into the URL. This url is plain, and removes things like " ?hi=i&am=a&get ".

example: http://www.website.com/index?get=information

will be shown as: http://www.website.com/index

Unless you use Get's to define some specific content, then use his code! :-)

share|improve this answer
hey thats, pretty cool :) you could also remove anything after a hash "#" (url fragment) in case it somehow slips in – Timo Huovinen Nov 22 '12 at 18:37
Not really, because if you set in " explode('#',$segment[0]) ", it will count as error, because " # " the symbol breaks the URL, and can only be read by Javascript. But what you can do, to be sure, is that you can remake the " return $url; " with " return trim($url,'#'); ", because then you will remove it, in case it will be there. But it will not remove the following content. You can read up on "Parse_url" if you want to. :-) – Alex Westergaard Nov 28 '12 at 17:27
Yeah, I realised around 10mins after that the # symbol can't be sent in there and decided to delete the comment, then forgot about it :) – Timo Huovinen Nov 29 '12 at 7:52

This is quite easy to do with your apache environment variables. This only works with Apache2, which I assume you are using.

Simply use the following PHP code:

<?php
  $request_url = apache_getenv("HTTP_HOST") . apache_getenv("REQUEST_URI");
  echo $request_url;
?>

Hope this helps. Amarjit

share|improve this answer

I've made this class to handle my URI's

<?php
/** --------------------------------------------------------------------------------------------------------------------
 * 
*/
function _cfg($option=null, $fallback=null) {
    static $_configs = array(
        'uri_hidden_script' => true;
        'uri_relative_public' => false;
        'uri_fallback_base' => 'http://localhost/application/';
        'uri_fallback_scheme' => 'http';
        'uri_fallback_user' => '';
        'uri_fallback_pass' => '';
        'uri_fallback_host' => 'localhost';
        'uri_fallback_port' => '';
        'uri_fallback_script' => 'index.php';
        'uri_separator_scheme' => '://';
        'uri_separator_auth' => ':';
        'uri_separator_host' =? '@';
    );

    if (isset($_configs[$option])) return $_configs[$option]; else return $fallback;
}
/** --------------------------------------------------------------------------------------------------------------------
 * 
*/
class URI
{
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    protected static $hidden_script;
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */

    protected static $host_base;
    protected static $app_base;
    protected static $script_base;
    protected static $current_base;
    protected static $public_base;
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    protected static $_segments;
    protected static $_parsers;
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    public static function __init()
    {
        self::$hidden_script = _cfg('uri_hidden_script', false);

        if (self::$_segments = self::extract()) {
            self::_bases();
            self::_parsers();
        }
    }
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    protected static function extract()
    {
        $script_uri = (isset($_SERVER['SCRIPT_URI'])) ? parse_url($_SERVER['SCRIPT_URI']) : array();
        if (empty($script_uri)) {
            $script_uri = parse_url(_cfg('uri_fallback_base', ''));
        }

        if (isset($_SERVER['PHP_SELF'])) {
            $script_path = preg_split('/[\/]/', $_SERVER['PHP_SELF'], -1, PREG_SPLIT_NO_EMPTY);
        } elseif (isset($_SERVER['REQUEST_URI']) && strlen($_SERVER['REQUEST_URI'])>2) {
            $script_path = preg_replace('/\?.*/', '', $_SERVER['REQUEST_URI']);
            $script_path = preg_split('/[\/]/', $script_path, -1, PREG_SPLIT_NO_EMPTY);
        } elseif (isset($script_uri['path'])) {
            $script_path = preg_split('/[\/]/', $script_uri['path'], -1, PREG_SPLIT_NO_EMPTY);
        } elseif (isset($_SERVER['SCRIPT_NAME'])) {
            $script_path = preg_split('/[\/]/', $_SERVER['SCRIPT_NAME'], -1, PREG_SPLIT_NO_EMPTY);
        } else {
            $script_path = array();
        }

        if (isset($_SERVER['SCRIPT_FILENAME'])) {
            $script_name = basename($_SERVER['SCRIPT_FILENAME']);
        } elseif (isset($_SERVER['SCRIPT_NAME'])) {
            $script_name = basename($_SERVER['SCRIPT_NAME']);
        } else {
            $script_name = _cfg('uri_fallback_script', '');
        }

        $script_split = (is_string($script_name)) ? array_search($script_name, $script_path, TRUE) : NULL;

        if (isset($_SERVER['REQUEST_SCHEME'])) {
            $uri['scheme'] = $_SERVER['REQUEST_SCHEME'];
        } elseif (isset($_SERVER['SERVER_PROTOCOL'])) {
            $uri['scheme'] = strtolower($_SERVER['SERVER_PROTOCOL']);
            $uri['scheme'] = substr($uri['Scheme'], 0, strpos($uri['Scheme'], '/'));
            $uri['scheme'] .= (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? 's' : '';
        } elseif (isset($script_uri['scheme'])) {
            $uri['scheme'] = $script_uri['scheme'];
        } else {
            $uri['scheme'] = _cfg('uri_fallback_scheme', '');
        }

        if (isset($_SERVER['PHP_AUTH_USER'])) {
            $uri['user'] = $_SERVER['PHP_AUTH_USER'];
        } elseif (isset($script_uri['user'])) {
            $uri['user'] = $script_uri['user'];
        } else {
            $uri['user'] = _cfg('uri_fallback_user', '');
        }

        if (isset($_SERVER['PHP_AUTH_PW'])) {
            $uri['pass'] = $_SERVER['PHP_AUTH_PW'];
        } elseif (isset($script_uri['pass'])) {
            $uri['pass'] = $script_uri['pass'];
        } else {
            $uri['pass'] = _cfg('uri_fallback_pass', '');
        }

        if (isset($_SERVER['SERVER_NAME'])) {
            $uri['host'] = $_SERVER['SERVER_NAME'];
        } elseif (isset($_SERVER['HTTP_HOST'])) {
            $uri['host'] = $_SERVER['HTTP_HOST'];
        } elseif (isset($script_uri['host'])) {
            $uri['host'] = $script_uri['host'];
        } else {
            $uri['host'] = _cfg('uri_fallback_host', '');
        }

        if (isset($script_uri['port'])) {
            $uri['port'] = $script_uri['port'];
        } else {
            $uri['port'] = _cfg('uri_fallback_port', '');
        }

        if (is_numeric($script_split)) {
            $uri['path'] = implode('/', array_slice($script_path, 0, $script_split));
        } else {
            $uri['path'] = '';
        }

        if (is_string($script_name)) {
            $uri['script'] = $script_name;
        } else {
            $uri['script'] = '';
        }

        if (isset($_SERVER['PATH_INFO'])) {
            $uri['info'] = implode('/', preg_split('/[\/]/', $_SERVER['PATH_INFO'], -1, PREG_SPLIT_NO_EMPTY));
        } elseif (is_numeric($script_split)) {
            $uri['info'] = implode('/', array_slice($script_path, $script_split+1));
        } else {
            $uri['info'] = '';
        }

        return $uri;
    }
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    protected static function _bases()
    {
        self::$host_base = self::compile('host');
        self::$app_base = self::compile('path');
        self::$script_base = self::$app_base.((self::$hidden_script) ? '' : '/'.self::$_segments['script']);
        self::$current_base = self::$script_base.((empty(self::$_segments['info'])) ? '' : '/'.self::$_segments['info']);

        if (_cfg('uri_relative_public', false) === true) self::$public_base = '/public';
        else self::$public_base = self::$app_base.'/public';

        return true;
    }
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    protected static function _parsers()
    {
        if (!isset(self::$_Parsers)) {
            self::$_parsers['SR_Key'][] = '%hostbase%';
            self::$_parsers['SR_Data'][] =& self::$host_base;
            self::$_parsers['SR_Key'][] = '%appbase%';
            self::$_parsers['SR_Data'][] =& self::$app_base;
            self::$_parsers['SR_Key'][] = '%scriptbase%';
            self::$_parsers['SR_Data'][] =& self::$script_base;
            self::$_parsers['SR_Key'][] = '%currentbase%';
            self::$_parsers['SR_Data'][] =& self::$current_base;
            self::$_parsers['SR_Key'][] = '%publicbase%';
            self::$_parsers['SR_Data'][] =& self::$_segments['scheme'];
            self::$_parsers['SR_Key'][] = '%user%';
            self::$_parsers['SR_Data'][] =& self::$_segments['user'];
            self::$_parsers['SR_Key'][] = '%pass%';
            self::$_parsers['SR_Data'][] =& self::$_segments['pass'];
            self::$_parsers['SR_Key'][] = '%host%';
            self::$_parsers['SR_Data'][] =& self::$_segments['host'];
            self::$_parsers['SR_Key'][] = '%port%';
            self::$_parsers['SR_Data'][] =& self::$_segments['port'];
            self::$_parsers['SR_Key'][] = '%path%';
            self::$_parsers['SR_Data'][] =& self::$_segments['path'];
            self::$_parsers['SR_Key'][] = '%script%';
            self::$_parsers['SR_Data'][] =& self::$_segments['script'];
            self::$_parsers['SR_Key'][] = '%info%';
            self::$_parsers['SR_Data'][] =& self::$_segments['info'];
        } return true;
    }
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    public static function compile($until=null)
    {
        $uri= '';
        $until = (is_string($until)) ? strtolower($until) : $until;
        if ($until === 'scheme') {
            return $uri .= (self::$_segments['scheme'] !== '') ? self::$_segments['scheme'].'://' : '';
        } else { $uri .= (self::$_segments['scheme'] !== '') ? self::$_segments['scheme'].'://' : ''; }
        if ($until === 'user') {
            return $uri .= (self::$_segments['user'] !== '') ? self::$_segments['user'].':' : '';
        } else { $uri .= (self::$_segments['user'] !== '') ? self::$_segments['user'] : ''; }
        $uri .= (self::$_segments['user'] !== '' || self::$_segments['pass'] !== '') ? ':' : '';
        if ($until === 'pass') {
            return $uri .= (self::$_segments['pass'] !== '') ? self::$_segments['pass'].'@' : '';
        } else { $uri .= (self::$_segments['pass'] !== '') ? self::$_segments['pass'] : ''; }
        $uri .= (self::$_segments['user'] !== '' || self::$_segments['pass'] !== '') ? '@' : '';
        if ($until === 'host') {
            return $uri .= (self::$_segments['host'] !== '') ? self::$_segments['host'] : '';
        } else { $uri .= (self::$_segments['host'] !== '') ? self::$_segments['host'] : ''; }
        if ($until === 'port') {
            return $uri .= (self::$_segments['port'] !== '') ? ':'.self::$_segments['port'] : '';
        } else { $uri .= (self::$_segments['port'] !== '') ? ':'.self::$_segments['port'] : ''; }
        if ($until === 'path') {
            return $uri .= (self::$_segments['path'] !== '') ? '/'.self::$_segments['path'] : '';
        } else { $uri .= (self::$_segments['path'] !== '') ? '/'.self::$_segments['path'] : ''; }
        if ($until === 'script') {
            return $uri .= (self::$_segments['script'] !== '') ? '/'.self::$_segments['script'] : '';
        } else { $uri .= (self::$_segments['script'] !== '') ? '/'.self::$_segments['script'] : ''; }
        if ($until === 'info') {
            return $uri .= (self::$_segments['info'] !== '') ? '/'.self::$_segments['info'] : '';
        } else { $uri .= (self::$_segments['info'] !== '') ? '/'.self::$_segments['info'] : ''; }
        return $uri;
    }
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    public static function segment($name=null)
    {
        if (isset(self::$_segments[$name])) {
            return self::$_segments[$name];
        } return false;
    }
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    public static function segments() {
        return self::$_segments;
    }
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    public static function base($base='app')
    {
        switch ($base) {
            case 'host':
            case 'domain':
                return self::$host_base;
            break;
            case 'app':
            case 'base':
                return self::$app_base;
            break;
            case 'script':
            case 'index':
                return self::$script_base;
            break;
            case 'current':
            case 'this':
                return self::$current_base;
            break;
            case 'public':
            case 'web':
                return self::$public_base;
            break;
            case 'all':
                return array(
                    'host'=>self::$host_base,
                    'app'=>self::$app_base,
                    'script'=>self::$script_base,
                    'current'=>self::$current_base,
                    'public'=>self::$public_base,
                );
            break;
        } return '';
    }
    /** ----------------------------------------------------------------------------------------------------------------
     * 
    */
    public static function parse($string=null)
    {
        if (is_string($string)) {
            return str_replace(self::$_parsers['SR_Key'], self::$_parsers['SR_Data'], $string);
        } elseif (is_array($string)) {
            foreach ($string as $k => $v) {
                $parsed[$k] = self::$replace($v);
            } return $parsed;
        } return $string;
    }
} URI::__init();
?>

Of course you have to adapt it to your needs and system !?!

<?php

echo URI::base('domain');
echo URI::base('app');
echo URI::base('script');
echo URI::base('public')

var_dump(URI::base('all'));
var_dump(URI::segments());

echo URI::parse('My base domain is %hostbase% and the root of my application URL is %appbase% and the currently accessed script is %scriptbase% I also keep my static resources in %publicbase%');

echo 'The full URI in the address bar is: '.URI::compile();
?>

It still needs to be perfected but it's a god solution for a centralized URI system :D

share|improve this answer

You might need to use some javascript/ajax magic to send the window's location back to the server and do your manipulations afterward.

Something like (with jQuery):

$.post('setLocation.php', {location: window.location}, function(data){});

Then in php (setLocation.php):

<?php

    //some validation of post....

    $actual_link = $_POST['location'];

    //...Save it to a session for use later or return something back

?>
share|improve this answer
Why? I am pretty sure it can be easily done in PHP. I did in the past, but I cannot really remember how!! – DiegoP. Jul 20 '11 at 21:31
@Diego -- hence the might – Neal Jul 20 '11 at 21:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.