From:             php at mike2k dot com
Operating system: Debian
PHP version:      5.2.4
PHP Bug Type:     Directory function related
Bug description:  readdir() does not show single integer filenames

Description:
------------
readdir() is working properly on other dirs, but on the dir with files "0"
"1" "2" etc, it doesn't seem to find the files.

the files have read permissions, as does the directory, there's no issues
there.


Reproduce code:
---------------
$dir = "somedirectory/foo/bar";
if(is_dir($dir)) {
        $objdir = opendir($dir);
        while($file = readdir($objdir)) {
                var_dump($file);
...


Expected result:
----------------
produces this:

string(1) "."
string(2) ".."


Actual result:
--------------
however there are 6 files in the directory with single integer values:

linux01:~/data$ ls somedirectory/foo/bar
0  1  2  3  4  5

those are completely ignored it appears.


-- 
Edit bug report at http://bugs.php.net/?id=42784&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=42784&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=42784&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=42784&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=42784&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=42784&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=42784&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=42784&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=42784&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=42784&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=42784&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=42784&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=42784&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=42784&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=42784&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=42784&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=42784&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=42784&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=42784&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=42784&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=42784&r=mysqlcfg

Reply via email to