Reputation: 28701
If my URL is http://www.server.com/myapp/stuff/to/see
and my directory structure on disk is htdocs/myapp/*
, how can I extract the /myapp
part? Also, what if there was no application folder and the application root was just '/'? Is there a predefined variable for getting that value?
What I want is a function that is able to trim /myapp
off of the request URI, so that I'm only left with /stuff/to/see
. AND, if I were to move the application to the server document root, have it determine that as well (so that /stuff/to/see
is just returned as /stuff/to/see
)
My directory structure is this:
application
|-config
|-config.inc.php
library
|-autoload.class.php
public
|-css
|-img
index.php
So, from index.php, I want to know how to get what I asked above.
Upvotes: 23
Views: 37660
Reputation: 358
This is how bramus/router does it
function getBasePath()
{
return implode('/', array_slice(explode('/', $_SERVER['SCRIPT_NAME']), 0, -1)) . '/';
}
Update:
To clarify, if you just want the resource path relative to getBasePath() above, then you can use
function getBaseURI()
{
$basePath = implode('/', array_slice(explode('/', $_SERVER['SCRIPT_NAME']), 0, -1)) . '/';
// Get the current Request URI and remove rewrite base path from it (= allows one to run the router in a sub folder)
$uri = substr(rawurldecode($_SERVER['REQUEST_URI']), strlen($basePath));
// Don't take query params into account on the URL
if (strstr($uri, '?')) {
$uri = substr($uri, 0, strpos($uri, '?'));
}
// Remove trailing slash + enforce a slash at the start
return '/' . trim($uri, '/');
}
If your .php is in htdocs/myapp/
and the current URL is http://www.server.com/myapp/stuff/to/see
getBasePath() = /myapp/
getBaseURI() = /stuff/to/see
IF your .php is in htdocs/
and the current URL is http://www.server.com/stuff/to/see
getBasePath() = /
getBaseURI() = /stuff/to/see
Upvotes: -1
Reputation: 449415
For the web root, there is DOCUMENT_ROOT
as pointed out in several answers. For the application root, there is no way for the system to tell which folder in your application is the root folder. You will have to set that manually.
Most applications that use a single entry point, define an application root using __DIR__
constant in this single entry point file, or a config setting and store that in a constant that is available throughout the application.
Upvotes: 12
Reputation: 409
I incurred a similar issue. Basically, in PHP if a file 'A.php' uses relative path to refer a resource, then the current path location used as a prefix to the relative path is of the top parent php under which 'A.php' is included.
This won't be a problem if A.php itself is top parent or when A.php sits at the same folder as is its top parent. But it will break the import otherwise.
The best solution I found was to make the reference explicitly absolute by using DIR (which gives current location of the file) and then going to the referred by from this location for e.g. DIR."/../help.php" to refer to a file help.php sitting 1 level above A.php.
Upvotes: 0
Reputation: 387607
When you access a page using http://www.server.com/myapp/stuff/to/see
, and your webserver's document root is at /something/htdocs/
, then the current local
path is /something/htdocs/myapp/stuff/to/see
.
There is no definite solution to get /something/htdocs/myapp/
as a result now, because there is no clear definition which path you should get. When you have some rule for that, tell us, and we might be able to come up with something, but without computation, the only paths you can see are:
http://www.server.com/myapp/stuff/to/see
$_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']
/something/htdocs/myapp/stuff/to/see/index.php
$_SERVER['SCRIPT_FILENAME']
/something/htdocs/
$_SERVER['DOCUMENT_ROOT']
/myapp/stuff/to/see
$_SERVER['REQUEST_URI']
/myapp/stuff/to/see/index.php
$_SERVER['SCRIPT_NAME']
and $_SERVER['PHP_SELF']
Upvotes: 18
Reputation: 95334
<?php
define('ABSPATH', dirname(__FILE__));
Put the following code in a file located in the root folder of your application and include it on every page load.
Then, you can simply always do $path = ABSPATH . '/path/to/file.php';
regardless of if your local copy is in a sub-directory folder
or not.
If your application already has a file which is included on every page load, you can simply drop the code above in that file and it will work.
Just note that you may have to add additional dirname()
calls depending on where that file is located. Add one for each directory you pass from the root of your webapp.
For example, if your webapp is located in /webapp/
and your "global include" is located in /webapp/includes/framework/init.php
, then the above code needs to be modified as such:
define('ABSPATH', dirname(dirname(dirname(__FILE__))));
ie.: 2 additional dirname()
calls due to two additional folders from the webapp root (includes/framework
)
Clarification
The code above is meant to be in one file, and one file only in your web application. That file needs to be included on each page load.
If you already have a file which is included before any processing (such as a configuration file or other), you may copy and paste that code in that file.
The number of dirname()
calls depends on how deep the file you copied and pasted the
code in is relative to the root directory of your web application. For the examples above, assume the root of your web application is represented by ~
.
If you copy-paste my code into ~/abspath.php
, then you need one dirname()
call.
If you copy-paste my code into ~/includes/abspath.php
, then you need two dirname()
calls.
If you copy-paste my code into ~/includes/config/abspath.php
, then you need three dirname()
calls. Now let's just say that's its final location.
In ~/index.php
, you do the following:
<?php
require_once('includes/config/abspath.php');
and you have access to ABSPATH
.
In ~/dir/someOtherPage.php
you do the following:
<?php
require_once('../includes/config/abspath.php');
and you have access to ABSPATH
.
This is why I'm saying that if you already have a file which is included on each page load, its simpler just to drop the above code in it. Just make sure you modify the amount of dirname()
calls accordingly. Again, this code is meant to be in ONLY ONE FILE.
Then do get the URL path, its a simple matter of removing the DOCUMENT_ROOT
FROM ABSPATH
:
$docRoot = rtrim($_SERVER['DOCUMENT_ROOT'], '/');
define('RELADDR', substr(ABSPATH, strlen($docRoot));
Upvotes: 3
Reputation: 1234
$_SERVER['DOCUMENT_ROOT']
will give you the path to htdocs, then you can go from there
EDIT
$_SERVER['REQUEST_URI']
will always give you /myapp/stuff/to/see
from your sample url above, regardless of the files location on disk or from which file it is invoked.
so it only a matter of explode
ing, array_shift
ing, and implode
ing.
btw, from your directory structure, it looks like you're using a framework. some frameworks have a URI/URL library that you can find useful (at least CodeIgniter has, not 100% sure with other frameworks)
Upvotes: 1
Reputation: 382696
Try this:
echo dirname(__FILE__);
where __FILE__
is the name of current executing script, and dirname
gets folder/application folder out of it.
More Options:
echo $_SERVER['DOCUMENT_ROOT']; // gives you the root dir
Upvotes: 0