MrVimes
MrVimes

Reputation: 3312

Trying to get a full URL without filename in PHP

I thought this would be simple but I can't seem to find a variable of $_SERVER array that has what I'm looking for.

Let's say my url is http://example.com/subdirectory/index.php I want to get all but the filename - http://example.com/subdirectory/.

I know I could quite easily do this with some string manipulation, but I want to know if there's a var of the _server array that I'm just missing. I've tried all of them to see what they give and I can get anything BUT what I'm looking for.

Upvotes: 25

Views: 55536

Answers (7)

Advena
Advena

Reputation: 2233

Another solution, without dirname and respecting http and https is to use the old fashioned get path method (source from this stackoverflow answer). Then check if the path ends with the fileextension ".php". If true, remove it from the path.

Long version

$current_url_path = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";

if (substr($current_url_path, -4) == ".php") {
    // path ends with .php
    // split string to array
    $arr = explode("/", $current_url_path);

    // remove last array item (after the last / which is the file)
    $arrS = array_slice($arr, 0, -1);

    // join the array to a string
    $current_url_path = implode("/", $arrS);
}
echo $current_url_path;

Shortened version

$current_url_path = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";

$current_url_path = substr($current_url_path, -4) == ".php" ?
    implode("/", array_slice((explode("/", $current_url_path)), 0, -1)) : $current_url_path;

echo $current_url_path;

Test

This url: http://localhost/comp-test/test.php is returned as http://localhost/comp-test

Upvotes: 2

user2288580
user2288580

Reputation: 2258

This worked perfectly for me and seems to be a very clean solution.

$protocol = ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://";
$path = $protocol.$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);

Upvotes: 2

Lèse majesté
Lèse majesté

Reputation: 8045

There won't be one because it's not a useful attribute to track. If the current script is something other than index.* then it will not return the correct URL for the current script.

However, this might get you what you want:

echo '//'.$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);

Edit:
Also, aside from installing the php.net online manual search tool for Firefox and setting it up with a search keyword (which will let you pull up the documentation on the $_SERVER global by typing something like "php $_server" into your URL bar), you should also know that var_dump() and print_r() lets you output the full contents of any variable, including arrays and objects. This is very useful for debugging.

Upvotes: 48

Jack Fuchs
Jack Fuchs

Reputation: 400

In your case, string manipulation is the best solution.

For Example:

substr($_SERVER['REQUEST_URI'], 0, strrpos($_SERVER['REQUEST_URI'], '/') + 1);

Upvotes: 18

Carlos Ouro
Carlos Ouro

Reputation: 565

There are no defined variables for what you want.

You can use the code below to get the full base url:

// Base folder url
$myBase =  ( (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on')) ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']);

but hopefully most times you won't require the full thing just use:

// Base folder server root path
$myBase = dirname($_SERVER['PHP_SELF']);

Just be careful if you're using some kind of routes system (mod_rewrite).

Upvotes: 9

Your Common Sense
Your Common Sense

Reputation: 157897

I can't seem to find a variable of $_SERVER array that has what I'm looking for.

because it's fictional string, existing only in the browser's address bar.
It's parts being sent to server separated.

I want to know if there's a var of the _server array

That's very easy to know. just print_r($_SERVER); really simple.

I know I could quite easily do this with some string manipulation

yeah. the code you have to write is less than this question text.

but with some manual magic it can be reduced to just one function.

Upvotes: 3

Jonathan Kuhn
Jonathan Kuhn

Reputation: 15301

you can use dirname() to get the path of a url.

Upvotes: 2

Related Questions