There must be something i don’t understand about linking files — but here’s my problem.
Basically, i have three files.
- generalfunctions.php
- wordcount.php
- index.php
All three files are in different directories.
B relies on A as follows: ../../../phpfunctions/generalfucntions.php
And when I run B all is well.
But C relies on B as follows: ../wordcount.php
When I run C, I get an error saying that linked file A cannot be found.
The actual error is:
No such file or directory in /…/public_html/plaoul/text/statistics/wordcount.php on line 11
Any ideas what I’m doing wrong??
Thanks for your help.
When you use
includeto include a file, and you use a relative path as parameter, it will be relative to the current working path.What is the current path? It is normally the path of the first called PHP script. The script where the whole execution started. You can get the current working dir with the function
getcwd. For example:<?php echo getcwd(); ?>will show you the current working path. You can change the current working path using thechdirfunction. For example:<?php chdir( '/home/myself' ); ?>– with this command you just changed the current working path!So, it is not always good to use relative paths in include, because the current path MAY change.
But with the usage of the
__FILE__magic constant you can use a sort of relative path as a parameter for an include, making it relative to the file where the include command is. This is good! Because no matter what the current working path is, the include will be always relative to the file which is including!So… try the following:
In B you should include A as follows:
In C you should include B as follows:
In short: using
dirname( __FILE__ )you can include the file using a path relative to the file where the “include” command is. Otherwise, the path will be relative to the current working path.