php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #61586 is_file("path/.ext");
Submitted: 2012-03-31 19:57 UTC Modified: 2013-02-18 00:35 UTC
From: simon at cicoss dot net Assigned:
Status: No Feedback Package: Filesystem function related
PHP Version: Irrelevant OS: Suse Linux
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: simon at cicoss dot net
New email:
PHP Version: OS:

 

 [2012-03-31 19:57 UTC] simon at cicoss dot net
Description:
------------
---
From manual page: http://www.php.net/function.is-file
---
Due to a small error I found that is_file returns true for something like "path/.ext" when "path/" files there ".ext".

Test script:
---------------
<?php
$filename = "path/.json";
is_file($filename);true if there are files in path "*. json"


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2012-04-01 08:00 UTC] reeze dot xia at gmail dot com
Hi simon:
  I don't get it. does it look like this? 

./testscript.php
./path
    /a.json   <---- a.json or any *.json ?
        file
cat testscript.php
<?php
$filename = "path/.json";
var_dump(is_file($filename)); ===> bool(true)
 [2012-04-02 07:00 UTC] aharvey@php.net
-Status: Open +Status: Feedback
 [2012-04-02 07:00 UTC] aharvey@php.net
Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.

I also can't reproduce this. This script:

<?php
mkdir('foo');
touch('foo/a.test');
var_dump(is_file('foo/.test'));
touch('foo/.test');
var_dump(is_file('foo/.test'));

unlink('foo/a.test');
unlink('foo/.test');
rmdir('foo');
?>

Outputs bool(false) and bool(true), which is what I'd expect.
 [2013-02-18 00:35 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 04:01:30 2024 UTC