|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[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" PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 19:00:02 2025 UTC |
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)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.