From: [EMAIL PROTECTED]
Operating system: Windows 2000
PHP version: 4.0.6
PHP Bug Type: Documentation problem
Bug description: Docu-Error at opendir()
Related File: chm
"This file was generated: Thu Jul 26 22:28:30 2001"
In opendir() docu, it says:
if ($dir = @opendir("/tmp")) {
while($file = readdir($dir)) {
echo "$file\n";
}
closedir($dir);
}
The while statement stops wenn a filename contains only of a "0". In
readdir() the docu is correct.
$handle=opendir('.');
echo "Directory handle: $handle\n";
echo "Files:\n";
while (($file = readdir($handle))!==false) {
echo "$file\n";
}
closedir($handle);
Note the !== false in the while statement.
Rasty
--
Edit bug report at: http://bugs.php.net/?id=13890&edit=1