Edit report at https://bugs.php.net/bug.php?id=61586&edit=1

 ID:                 61586
 Updated by:         [email protected]
 Reported by:        simon at cicoss dot net
 Summary:            is_file("path/.ext");
-Status:             Open
+Status:             Feedback
 Type:               Bug
 Package:            Filesystem function related
 Operating System:   Suse Linux
 PHP Version:        Irrelevant
 Block user comment: N
 Private report:     N

 New Comment:

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.


Previous Comments:
------------------------------------------------------------------------
[2012-04-01 08:00:29] 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-03-31 19:57:59] 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"



------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=61586&edit=1

Reply via email to