45

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

Bv202
  • 3,924
  • 13
  • 46
  • 80
  • For me it ended up being because it requires an absolute path, not a relative path. Some PHP functions accept a path relative to the current file, one being parse_ini_file. – Alex K Jan 25 '15 at 00:29
  • 2
    I also thought I had this issue. After checking the spelling 10 times I realised that the filename ended in ".jpg.jpg". It's true, I am a failure – AlexMorley-Finch Apr 16 '18 at 21:34

15 Answers15

35

file_exists() just doesn't work with HTTP addresses.

It only supports filesystem paths (and FTP, if you're using PHP5.)

Please note:

Works :

if  (file_exists($_SERVER['DOCUMENT_ROOT']."/folder/test.txt") 
    echo "file exists";

Does not work:

if (file_exists("www.mysite.com/folder/test.txt") 
    echo "file exists";
Nagama Inamdar
  • 2,851
  • 22
  • 39
  • 48
Mahdi Loghmani
  • 361
  • 3
  • 2
28

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

Timur
  • 6,668
  • 1
  • 28
  • 37
  • 1
    This was indeed the problem. It seemed the script replaced _'s with -'s. Very hard to miss (and annoying) :| – Bv202 Aug 03 '11 at 17:09
  • Similar things happen with sometimes :) – Timur Aug 03 '11 at 17:11
  • 3
    For me clearstatcache() - didn't helped but... My class name was Multimedia. Then i used clearstatcache() - still didn't work. Then i renamed file to Multimedia2 didn't helped to. That was strange. Then I renamed file to Abc. It worked... Then renamed to Multimedia and it worked again :D It took me about half an hour... – instead Jun 20 '15 at 11:56
  • 5
    I also had problem with these. because i supplied `file_exists()` a full path. it shouldn't be a full path. for example www.abc.com/photo.jpg, you should supply only photo.jpg not with domain. – John Christian De Chavez Aug 01 '16 at 10:23
  • clearstatcache() is not usefull here : according to the doc, PHP doesn't cache information about non existent files. So if file_exists returns false instead of true, file status cache has nothing to do with it. If, on the other hand, file_exists returns true intsead of false, clearstatecache might be a solution. @see https://www.php.net/manual/en/function.clearstatcache.php – Emmanuel BRUNO Nov 09 '20 at 16:37
14

I found that what works for me to check if a file exists (relative to the current php file it is being executed from) is this piece of code:

$filename = 'myfile.jpg';
$file_path_and_name = dirname(__FILE__) . DIRECTORY_SEPARATOR . "{$filename}";
if ( file_exists($file_path_and_name) ){
  // file exists. Do some magic...              
} else {
  // file does not exists...
}
Ikhlak S.
  • 8,578
  • 10
  • 57
  • 77
Shahar
  • 2,269
  • 1
  • 27
  • 34
12

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.

php.net: file_exists()
php.net: safe mode

Ikhlak S.
  • 8,578
  • 10
  • 57
  • 77
ace
  • 7,293
  • 3
  • 23
  • 28
  • 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 03 '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 03 '11 at 17:04
  • 2
    Note that safe_mode has been removed in PHP 5.4.0. – Genjo Dec 19 '17 at 16:41
12

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.

Brian
  • 418
  • 1
  • 5
  • 12
4

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

WoodrowShigeru
  • 1,418
  • 1
  • 18
  • 25
Doug
  • 6,322
  • 3
  • 29
  • 48
2

A very simple trick is here that worked for me.

When I write following line, than it returns false.

if(file_exists('/my-dreams-files/'.$_GET['article'].'.html'))

And when I write with removing URL starting slash, then it returns true.

if(file_exists('my-dreams-files/'.$_GET['article'].'.html'))
  • 1
    This seems to be expected, provided that my-dreams-files is not in the root of the drive. / with nothing in front of it is the root. Your second example is relative. – conrad10781 Dec 02 '16 at 19:48
  • I also had a slash because I assumed the slash would navigate to the root of the website, but it don't :/ – Vincent Dec 22 '22 at 21:19
2

I have a new reason this happens - I am using PHP inside a Docker container with a mounted volume for the codebase which resides on my local host machine.

I was getting file_exists == FALSE (inside Composer autoload), but if I copied the filepath into terminal - it did exist! I tried the clearstatche(), checked safe-mode was OFF.

Then I remembered the Docker volume mapping: the absolute path on my local host machine certainly doesn't exist inside the Docker container - which is PHP's perspective on the world.

(I keep forgetting I'm using Docker, because I've made shell functions which wrap the docker run commands so nicely...)

Ikhlak S.
  • 8,578
  • 10
  • 57
  • 77
scipilot
  • 6,681
  • 1
  • 46
  • 65
  • 1
    I would like to upvote this 1000 times! I spent hours thinking it was a permissions issue but all I needed to do was remap my PHP script from /Volumes/MyDrive to /var/www/html. Thanks for the reminder – pipwerks Jan 17 '19 at 09:39
  • I have the same problem. Not being a Docker expert, I am not sure how to remap. When I try $iRc=file_exists("/opt/docker-substantiator/app/assets/image_crud/views/list.php");, which is the full path on the host, it fails. Of course on the cmd line ls /opt/docker-substantiator/app/assets/image_crud/views/list.php works fine. What should the path be to list.php in my container? – Richard Bernstein Apr 17 '20 at 02:57
  • @RichardBernstein it depends how you mounted the volume. You just have to make sure your app is using a path which is according to the container's filesystem, not the host's. I would jump inside it to check it's right using `docker exec -it container-name bash` then poke around until you understand the inner filesystem. You can figure it out from the volume mapping (e.g. -v /Volumes/MyDrive:/var/www/html) but seeing it place makes it clearer. – scipilot Apr 18 '20 at 02:05
  • @RichardBernstein but if your path `/opt/docker-substantiator/app/assets/image_crud/views/list.php` is correct within the container (i.e. it's not a path on your host / your dev machine), then you have may a different problem. – scipilot Apr 18 '20 at 02:07
  • 1
    Thanks scipilot. I think that the issue is the mapping as you state. I loaded up bash and I see :/app#. I guess I need to learn the commands to see the inner filesystem. I didnt create the original containers so I don't know where the docker run got its mount instructs from. Thx again. – Richard Bernstein Apr 19 '20 at 03:26
  • I did manage to cd to root@6adf4b4936f7:/app/assets/image_crud/views#. But when I $iRc=file_exists("/assets/image_crud/views/list.php");, it still fails. – Richard Bernstein Apr 19 '20 at 03:34
  • Why don't you open a new question so we can help you properly? I think you're missing the leading /app/ – scipilot Apr 20 '20 at 05:03
1

It can also be a permission problem on one of the parent folders or the file itself.

Try to open a session as the user running your webserver and cd into it. The folder must be accessible by this user and the file must be readable.

If not, php will return that the file doesn't exist.

Julien Ricard
  • 316
  • 2
  • 11
0

A custom_file_exists() function inspired by @Timur, @Brian, @Doug and @Shahar previous answers:

function custom_file_exists($file_path=''){
    $file_exists=false;

    //clear cached results
    //clearstatcache();

    //trim path
    $file_dir=trim(dirname($file_path));

    //normalize path separator
    $file_dir=str_replace('/',DIRECTORY_SEPARATOR,$file_dir).DIRECTORY_SEPARATOR;

    //trim file name
    $file_name=trim(basename($file_path));

    //rebuild path
    $file_path=$file_dir."{$file_name}";

    //If you simply want to check that some file (not directory) exists, 
    //and concerned about performance, try is_file() instead.
    //It seems like is_file() is almost 2x faster when a file exists 
    //and about the same when it doesn't.

    $file_exists=is_file($file_path);

    //$file_exists=file_exists($file_path);

    return $file_exists;
}
RafaSashi
  • 16,483
  • 8
  • 84
  • 94
0

This answer may be a bit hacky, but its been working for me -

$file = 'path/to/file.jpg';
$file = $_SERVER['REQUEST_SCHEME'].'://'.$_SERVER['HTTP_HOST'].'/'.$file;
$file_headers = @get_headers($file);
if($file_headers[0] == 'HTTP/1.1 404 Not Found') {
    $exists = false;
}else{
    $exists = true;
}

apparently $_SERVER['REQUEST_SCHEME'] is a bit dicey to use with IIS 7.0 + PHP 5.3 so you could probably look for a better way to add in the protocol.

I found this answer here http://php.net/manual/en/function.file-exists.php#75064

kiko carisse
  • 1,634
  • 19
  • 21
0

I spent the last two hours wondering what was wrong with my if statement: file_exists($file) was returning false, however I could call include($file) with no problem.

It turns out that I didn't realize that the php include_path value I had set in the .htaccess file didn't carry over to file_exists, is_file, etc.

Thus:

<?PHP
// .htaccess php_value include_path '/home/user/public_html/';

// includes lies in /home/user/public_html/includes/

//doesn't work, file_exists returns false
if ( file_exists('includes/config.php') )
{
     include('includes/config.php');
}

//does work, file_exists returns true
if ( file_exists('/home/user/public_html/includes/config.php') )
{
    include('includes/config.php');
}
?>

Just goes to show that "shortcuts for simplicity" like setting the include_path in .htaccess can just cause more grief in the long run.

Ikhlak S.
  • 8,578
  • 10
  • 57
  • 77
Irshad Khan
  • 5,670
  • 2
  • 44
  • 39
0

In my case, the problem was a misconception of how file_exists() behaves with symbolic links and .. ("dotdot" or double period) parent dir references. In that regard, it differs from functions like require, include or even mkdir().

Given this directory structure:

/home/me/work/example/
  www/
/var/www/example.local/
  tmp/
  public_html -> /home/me/work/example/www/

file_exists('/var/www/example.local/public_html/../tmp/'); would return FALSE even though the subdir exists as we see, because the function traversed up into /home/me/work/example/ which does not have that subdir.


For this reason, I have created this function:

/**
 * Resolve any ".." ("dotdots" or double periods) in a given path.
 *
 * This is especially useful for avoiding the confusing behavior `file_exists()`
 * shows with symbolic links.
 *
 * @param string $path
 *
 * @return string
 */
function resolve_dotdots( string $path ) {

    if (empty($path)) {
        return $path;
    }

    $source = array_reverse(explode(DIRECTORY_SEPARATOR, $path));
    $balance = 0;
    $parts = array();

    // going backwards through the path, keep track of the dotdots and "work
    // them off" by skipping a part. Only take over the respective part if the
    // balance is at zero.
    foreach ($source as $part) {
        if ($part === '..') {
            $balance++;

        } else if ($balance > 0) {
            $balance--;

        } else {
            array_push($parts, $part);
        }
    }

    // special case: path begins with too many dotdots, references "outside
    // knowledge".
    if ($balance > 0) {
        for ($i = 0; $i < $balance; $i++) {
            array_push($parts, '..');
        }
    }

    $parts = array_reverse($parts);
    return implode(DIRECTORY_SEPARATOR, $parts);
}
WoodrowShigeru
  • 1,418
  • 1
  • 18
  • 25
0

I just encountered this same problem and I solved it in a mysterious way. After inserting a a filepath I copied from Windows File explorer. file_exists() keeps returning false continuously, but if I copy same path from VSCode editor it works perfectly.

After dumping variables with var_dump($path); I noticed something mysterious. For path I copied from file explorer it shows length 94. For path I copied from VSCode Editor it shows length 88.

Both path look same length on my code Editor.

My suggestion: if string contain hidden characters, it may fail and not work.

Stanley Aloh
  • 360
  • 4
  • 11
0

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'));
amigura
  • 139
  • 5