Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can not find a good example/explanation on how to traverse directories in a PHP script.

I have to call a class from a directory that is a great-great-great...great-great grandparent of the current file.

Since the directory of the file I cam calling is closer to the root than the current php script, I just want to say "c:\folder\script.php".

when I use require_once (dirname('c:/folder/').'script.php'); I get config errors.

This is on IIS. Is the slash direction a factor?

share|improve this question
1  
Can't you do relative paths with ../../../script.php? – Barmar Feb 27 at 19:43
Yeah, but the relative file is not very close to the required file. It would be a whole lotta dots and slashes. I'm trying to avoid that. – tPlummer Feb 27 at 19:46
1  
Why are you using dirname? what is the exact config error you get? – Samuel Feb 27 at 19:46
1  
You don't need that dirname() call in there - also, what config errors are you getting? – Sam Dufel Feb 27 at 19:46
1  
@Samuel - *high five – Sam Dufel Feb 27 at 19:47
show 3 more comments

2 Answers

up vote 2 down vote accepted

Yes, the slash matters between Windows/Linux. That's why the DIRECTORY_SEPARATOR constant was invented, they differ per build. You should be able to:

define('DS', DIRECTORY_SEPARATOR); // Alias to keep it short and readable
require_once('C:' . DS . 'folder' . DS . 'script.php');
share|improve this answer
1  
Windows has recognized Unix-style directory separators for decades. – Barmar Feb 27 at 19:49
This worked. Both slash styles did not work before, but this did the trick. Thanks. – tPlummer Feb 27 at 19:52

It might be more suitable to transverse from the root directory.

Generally this is represented by a "/"

require_once("/some/script.php");

Or, define a base directory on the top of executing script and use this as the helper variable on your links. Below is an example:

define("BASEDIR", "../../../../"); // Point to the great great great grans parents just once and use them
share|improve this answer
Putting the / at the front of the string signifies the root directory of which directory? – tPlummer Feb 27 at 19:55
It points to the server's root directory. The document root of the site. – Starx Feb 27 at 19:56
so the defined domain of the host (ie, "c:\inetput\wwwroot\mysite"), or the wwwroot (ie, "c:\inetput\wwwroot")? – tPlummer Feb 27 at 19:57
AFAIK, domain of the host. But I cannot confirm this, so check it and make necessary adjustments. – Starx Feb 27 at 20:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.