Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I return the pathname from the current file, only 2 directories up?

So if I my current file URL is returning theme/includes/functions.php

How can I return "theme/"

Currently I am using

return dirname(__FILE__)
share|improve this question

2 Answers

up vote 13 down vote accepted
return dirname(dirname(__FILE__));

Should return 2 directories up for the current file.

share|improve this answer
Thank you. that worked like a charm. – levi Jun 28 '11 at 18:05
Is the main benefit from this method over dirname(__FILE__).'/../'; to remove the possible inconsistency of DIRECTORY_SEPARATOR? – Patrick Apr 27 '12 at 14:04
@Patrick I would say that the main benefit of this over your suggestion is that we get the absolute path of the directory instead of a relative path. Also, DIRECTORY_SEPARATOR inconsistencies are generally edge cases as PHP automatically converts *nix style separators into the appropriate Windows style separator for most cases. – cspray Apr 27 '12 at 14:12

Even simpler than dirname(dirname(__FILE__)); is using __DIR__

dirname(__DIR__);

which works from php 5.3 on.

share|improve this answer

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.