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 using PHP 5's scandir($dir) function to iterate through a directory and print out an xml list of files. Only, when the directory has a single quote in the name, scandir returns no items! It doesn't return false (as it would if it failed) or generate warnings or errors - just empty. Any ideas?

$items = scandir(stripslashes($dir)); //strip slashes in case magic_quotes are on
if($items === false) die("scandir returned failure");
print_r($items)
share|improve this question
your code worked fine for me (though last line is missing its ;) when I had a child directory with a single quote in its name on linux...are you trying this on windows? – Jack Jan 27 '09 at 20:00

2 Answers

up vote 1 down vote accepted

I've tested it on windows and it worked fine. Try echo $dir; to make sure it's what you expect.

Also, use ini_set() to make sure your error level is high enough:

ini_set('error_reporting', E_ALL);
share|improve this answer
Actually, I'd recommend echo stripslashes($dir); — make sure that scandir is seeing what you expect. – Ben Blank Jan 27 '09 at 20:10

Have you checked that the user executing the script has read permissions for the target directory?

share|improve this answer

Your Answer

 
discard

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