New Project! ChatWithDesign 🛠️ AI Chat that can create, modify Figma files and even create websites.Try it now

Resolving PHP Relative Path Problem

March 18, 20103 min read

relative paths 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:

// File './test.php':
// File './include/a/a.inc':
// File './include/b.inc':

Running 'test.php' fails with:

Fatal error: Failed opening required '../b.inc'
(include_path='.:/usr/local/lib/php')
in /home/geeba/include/a/a.inc on line 2"

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:
include($_SERVER["DOCUMENT_ROOT"] . "/dir/script_name.php");
  1. Use dirname(__FILE__) - The FILE constant contains the full path and filename of the script that it is used in. The function dirname() 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:
include(dirname(__FILE__) . "/dir/script_name.php");

You may also use basename() together with dirname() to find the included scripts name and not just the name of the currently executing script, like this:

script_name = basename(__FILE__);

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.

© 2024 Michael Yagudaev