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

 ID:               61586
 Updated by:       php-bugs@lists.php.net
 Reported by:      simon at cicoss dot net
 Summary:          is_file("path/.ext");
-Status:           Feedback
+Status:           No Feedback
 Type:             Bug
 Package:          Filesystem function related
 Operating System: Suse Linux
 PHP Version:      Irrelevant

 New Comment:

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.


Previous Comments:
------------------------------------------------------------------------
[2012-04-02 07:00:35] ahar...@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.

------------------------------------------------------------------------
[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