php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #12033 file_exists doesn't work properly with variables
Submitted: 2001-07-11 01:00 UTC Modified: 2010-12-20 15:16 UTC
From: ddruff at gemini1consulting dot com Assigned:
Status: Not a bug Package: *General Issues
PHP Version: 4.0.5 OS: Win 95
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: ddruff at gemini1consulting dot com
New email:
PHP Version: OS:

 

 [2001-07-11 01:00 UTC] ddruff at gemini1consulting dot com
The following won't work in Win95:

$path="c:/test.bat";
if(file_exists($path)) {print "file $path exists"}

This will report a file existing even though it doesn't. You might think that this is because we are using forwardslashes in windows BUT IF you then parse $path to replace the forwardslashes with backslashes (using a regular expression) it still doesn't work. BUT if you do this:
$path="\"".$path."\"";
(leaving $path with forward slashes) it does work properly.

I suppose this is a bug?

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-07-11 03:07 UTC] zak@php.net
I cannot reproduce this under Windows 2000 with PHP 4.0.6

Do you get the same error if you use a literal value instead of a variable.

ie.
var_dump (file_exists ("c:/some_random_file_name"));
or
var_dump (file_exists ("c:\\some_random_file_name"));
 [2001-07-11 14:50 UTC] ddruff at gemini1consulting dot com
The example in  my previous submission did not show the apparent bug. The example script did not match exactly what was going on in my actual script.

The problem seems to only occur when two file_exists statements are used in a row and the path argument used uses the same "slash style" (forward or backward) each time.


An example demonstrating the problem be dowloaded here: 
ftp://www.gemini1consulting.com/pub/tekhelp/test_file_exists.phps

(You will need to change the extension to php for it to work). 
 [2001-07-11 16:58 UTC] zak@php.net
The result of the call to file_exists() is cached. To clear the cache, call clearstatcache() before your second call to file_exists()

If this does not fix the problem, please reopen the bug. :)
 [2010-12-20 15:16 UTC] jani@php.net
-Package: Any +Package: *General Issues
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 02:01:29 2024 UTC