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 am new to using the PHP Directory Iterator.

My understanding is if I do:

 $dir = new DirectoryIterator(dirname("/var/wwwphp"));

Then

$dir->getPath();

should be /var/wwwphp and I can start using it in that folder. But instead, getPath just gives me /var. Furthermore, if I iterate over the files, it gives me all the files in /var and not /var/wwwphp.

Why can I not go straight into the wwwphp folder?

Thanks.

share|improve this question

2 Answers

up vote 3 down vote accepted
$dir = new DirectoryIterator('/var/wwwphp');

dirname explicitly removes the last part of the string, the DirectoryIterator only ever gets to see /var if you use it.

share|improve this answer
D'oh! Thank you! – Antony DAndrea Mar 6 at 10:12

If you check up the dirname documentation you will see that it "Returns parent directory's path"

http://www.php.net/manual/en/function.dirname.php

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.