Absolute path and Relative path file inclusion in PHP
- Thursday, January 31, 2008, 18:35
- php, tips and technique
- 25 comments
I think you guyz must be aware of absolute path and relative path in PHP. If you do not know anything about it then let me explain you about absolute path and relative path in the server with the example using include() function of PHP. You can see the example below, I’ve included the same files in PHP but the same file is included in two different manner.
include("/home/example/public_html/config.php"); //absolute path
include("config.php"); //relative path
As you can see that in the first line, config.php file is included using absolute path in which is full path of the file in the server. The next line uses relative path file inclusion.
Well I’ve been using the relative path inclusion in the beginning of my career and I’ve faced some serious problem in a project.Since the config.php has be be included inside many files, I’ve give the various paths from the various folders which should be relative to the root folder and which was quite hectic.
So what is the solution. The solution is to use absolute path file inclusion.Absolute path of the file is always same no matter from which folder you include that file in server.
How to get absolute Path in PHP?? The absolute path of your local server and the real server might be different. So to get the absolute path for both version, you can take the help of the magic constant called __FILE__ and dirname() function available in PHP.
Use the following line in the file of the that folder which contains the file which is to be included sitewise.
define(‘ABSPATH’, dirname(__FILE__).’/');
The __FILE__ returns the full path and filename of the file.Now we are concerned with directory only which is accomplished by dirname() which returns directory name component of path.
Now let us suppose that settings.php file has to be included in many files of the site then you can use following statementto do this.
require_once(ABSPATH.’wp-settings.php’);
Popularity: 17% [?]
Related Posts
» Getting filename and extension in PHP using explode() ,basename() and pathinfo()
» 8 useful server variables available in PHP
» Force download multiple files in a zip archive using PHP
» Blink and bounce effect on image or object using jquery





thanks.
Thanks so much for this article – it’s helped me a great deal with inlcuding sensitive data (database user/passwords for example) without the data being available to the public.
Thanks ben…
Thanks, just what I was looking for! I knew about the difference between the two types (of course, I almost wanted to write). But I was struggling with the issue of a remote and local server. But this solves it completely!
Regards from the Netherlands,
Sander
@Sander – Welcome dude!!.. It’s so nice to hear that this post was useful for you.
Greetings from Nepal
Thank a million for this!
Thank you,
this was right what I was looking for!
Greetings from Italy
thanks a lot, it was very helpfullllll
Thanks dude!!!!
Brilliant article, but you put “ABSLPATH” the first time then “ABSPATH” without the L.
Easy to miss for Copy + Paste
Jonathan
I still like the idea of relative paths. tag in HTML helps a lot. That with all relative paths are relative to the base-path.
You’ll just have to script in the URI of the site’s current location.
Thanks! This was very helpful for me!
Greetings from Germany
Thanks so much. It was very helpful. It created new problems, but that’s the way it goes.
Thanks a lot! This helped me with the deployment problems I was having with my first PHP application.
Thanks mate!!!
Roshan, I have this situation:
I’m creating a new version of a website, on my test server, the subdomains are subfolder of the root and I’ don’t have problems with Absolute paths, but in the liver server, the subdomains are in diferentes folder than the root folder, so they are not working, just the absolute icludes for their respective subfolders, any idea if this problem is bcz of the pacahe version or server permissions?
By the way, with the variable $_SERVER['DOCUMENT_ROOT']; you can get the absolute path too.
Thanks for the advice! Very useful and basic, indeed.
cool! this is what i’ve been looking for. thanks a lot!
awesome! just what I was looking for, thanks!
Thanks man, thats is great
Thanks for the Information.
Hey Roshan where are you man? You are not updating the Blog since last year.
We are missing you dude.
@sunware
Thank you
thanks