|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2001-11-07 14:25 UTC] philip@php.net
  [2001-11-07 14:26 UTC] philip@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 06:00:01 2025 UTC | 
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