tomorrows web, here today

Resolving PHP Relative Path Problem

php-cover

Using relative paths in PHP may prove to be a little tricky for beginners. Especially if you are coming from another language. The way the paths are resolved in PHP is different enough from other languages that I decided to write this short article to explain how it works.

Problem:

When a PHP file includes another PHP file which itself includes yet another file — all being in separate directories — using relative paths to include them may raise a problem. PHP will often report that it is unable to find the third file, but why? Well the answer lies in the fact that when including files in PHP the interpreter tries to find the file in the current working directory. In other words, if you run the script in a directory called A and you include a script that is found in directory B, then the relative path will be resolved relative to A when executing a script found in directory B. So, if the script inside directory B includes another file that is in a different directory, the path will still be calculated relative to A not relative to B as you might expect. This is a very important point to understand about the difference between PHP and other languages like C/C++.
To further clarify this point, lets consider the following example taken from a post by “œvvo at geocities dot com” at http://bugs.php.net/bug.php?id=9673:

Running ‘test.php’ fails with:

This is because the code looks for ‘../b.inc’ relative to ‘./’ not relative to ‘./include/a/’.

Solution:

In general, there are 2 solutions to this problem:

  1. Use $_SERVER["DOCUMENT_ROOT"] – We can use this variable to make all our includes relative to the server root directory, instead of the current working directory(script’s directory). Then we would use something like this for all our includes:
  2. Use dir(__FILE__) – The __FILE__ constant contains the full path and filename of the script that it is used in. The function dir() removes the file name from the path, giving us the absolute path of the directory the file is in regardless of which script included it. Using this gives us the option of using relative paths just as we would with any other language, like C/C++. We would prefix all our relative path like this:
    You may also use basename() together with dir() to find the included scripts name and not just the name of the currently executing script, like this:

I personally prefer the second method over the first one, as it gives me more freedom and a better way to create a modular web application.

Note:  Remember that there is a difference between using a backslash “\” and a forward (normal) slash “/” under Unix based systems. If you are testing your application on a windows machine and you use these interchangeably, it will work fine. But once you try to move your script to a Unix server it will cause some problems. Backslashes (“\”) are also used in PHP as in Unix, to indicate that the character that follows is a special character. Therefore, be careful not to use these in your path names.

This concludes this tutorial, I hope you enjoyed it and learned something useful. Thank you for reading, and if you have any feedback please post here or contact me directly.

  • Ramires

    I know this is old, but as they say: ‘Old is gold!’
    Thanks, brother!
    Help me a lot.
    Cheers!

    • yagudaev

      Thanks Ramires :) . I am glad you found this to be useful.

  • Scott Richardson

    Method 2 didn’t work for me, however method 1 worked fine!

    • yagudaev

      Method 2 is different, you have to reference your included scripts relative to the location of the script you are writing the include in.

  • http://www.facebook.com/angela.poire Angela Poire

    Very helpful. Thank you!

    • yagudaev

      Glad you found it helpful :) .

  • Homer Flagg

    Dude, you were the first who could provide this solution in a way that actually worked. And it’s not even complicated. Thanks!

    • yagudaev

      Glad you were able to solve your problem :) .

  • Davex

    Thank you, it was very helpful.

    • yagudaev

      I am happy to see you found this helpful.

  • Shervin

    After reading a lot about this problem in another websites, this was very helpful . thank you

    • yagudaev

      Your welcome :) . I am glad you found this helpful.

  • jithin

    You got a typo there, in the second method. You are saying in the explanation to use dir(), but actually its dirname() which is shown in the example correctly.

  • P. Silva

    Thanks. This solved a problem for a PHP newbie (me).

  • http://twitter.com/skierpage S Page

    If you don’t need backwards compatibility you can use the magic constant__DIR__ in PHP 5.3. It’s the same as dirname(‘__FILE__’), giving the directory of the current script.

  • http://www.facebook.com/kaleazy Kyle Anthony Hill

    Thank you, this is perfect!