ID: 8823
Updated by: elixer
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Duplicate
Bug Type: Directory function related
Assigned To: 
Comments:

Bug submitted twice.  Marking this one as a duplicate.

Previous Comments:
---------------------------------------------------------------------------

[2001-01-20 16:07:41] [EMAIL PROTECTED]
function dir_list($dirname) 
{ 
 if($dirname[strlen($dirname)-1]!='/') 
 $dirname.='/'; 
 $handle=opendir($dirname); 
 while ($file = readdir($handle)) 
  { 
   if($file=='.'||$file=='..') continue;
   $result_array[]=$dirname.$file; 
   } 
 closedir($handle); 
 return $result_array; 
};

executed for a directory which has subdirectory that has a digit/special character as 
a first character of it's name,
then that subdirectory won't be included in the $result_array


---------------------------------------------------------------------------


Full Bug description available at: http://bugs.php.net/?id=8823


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to