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

I'm having a very weird issue with file_exists(). I'm using this function to check if 2 different files in the same folders do exist. I've double-checked, they BOTH do exist.

echo $relative . $url['path'] . '/' . $path['filename'] . '.jpg';
Result: ../../images/example/001-001.jpg

echo $relative . $url['path'] . '/' . $path['filename'] . '.' . $path['extension'];
Result: ../../images/example/001-001.PNG

Now let's use file_exists() on these:

var_dump(file_exists($relative . $url['path'] . '/' . $path['filename'] . '.jpg'));
Result: bool(false)

var_dump(file_exists($relative . $url['path'] . '/' . $path['filename'] . '.' . $path['extension']));
Result: bool(true)

I don't get it - both of these files do exist. I'm running Windows, so it's not related to a case-sensitive issue. Safe Mode is off.

What might be worth mentioning though is that the .png one is uploaded by a user via FTP, while the .jpg one is created using a script. But as far as I know, that shouldn't make a difference.

Any tips?

Thanks

share|improve this question
1  
One word: permissions. – Chris Aug 3 '11 at 16:54

5 Answers

up vote 4 down vote accepted

Results of the file_exists() are cached, so try using clearstatcache(). If that not helped, recheck names - they might be similar, but not same.

share|improve this answer
This was indeed the problem. It seemed the script replaced _'s with -'s. Very hard to miss (and annoying) :| – Bv202 Aug 3 '11 at 17:09
Similar things happen with sometimes :) – Timur Aug 3 '11 at 17:11

Just my $.02: I just had this problem and it was due to a space at the end of the file name. It's not always a path problem - although that is the first thing I check - always. I could cut and paste the file name into a shell window using the ls -l command and of course that locates the file because the command line will ignore the space where as file_exists does not. Very frustrating indeed and nearly impossible to locate were it not for StackOverflow.

HINT: When outputting debug statements enclose values with delimiters () or [] and that will show a space pretty clearly. And always remember to trim your input.

share|improve this answer
Of course I find this answer after I resolve this exact same issue on my own! – Curtis Gibby Dec 11 '12 at 18:17

It's because of safe mode. You can turn it off or include the directory in safe_mode_include_dir. Or change file ownership / permissions for those files.

http://php.net/manual/en/function.file-exists.php

http://www.php.net/manual/en/ini.sect.safe-mode.php
share|improve this answer
Safe mode is already turned off, so that's not the issue. Also, the permissions should be file-specific, as they're both in the same folder. I've never had these issues in Windows, but when looking at the permissions, I don't see any difference between the two... – Bv202 Aug 3 '11 at 16:59
Ah, sorry didn't see safe mode is off. If permissions are the same, you might need to check the owner id or the group id for those files, it could be that your webuser doesn't belong to the group or is not the owner of the file. – ace Aug 3 '11 at 17:04

Try using PATH_SEPARATOR instead of '/' as separator. Windows uses a different separator for file system paths (backslash) than Linux and Unix systems.

share|improve this answer

have you tried manual entry. also your two extensions seem to be in different case

   var_dump(file_exists('../../images/example/001-001.jpg'));
   var_dump(file_exists('../../images/example/001-001.PNG'));
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.