File Directory Php

   $dh = opendir('/usr/local/apache2/htdocs/');
   while ($file = readdir($dh))
      echo "$file 
";
   closedir($dh);
?>