How to print all files from a directory with opendir() and readdir() functions in PHP

1 Answer

0 votes
 $dir = opendir("/xampp/htdocs/");
   
 while (($file = readdir($dir)) !== false) 
      echo "file: " . $file . "<br />";
   
 closedir($dir);

/*
run:
  
file: .
file: ..
file: applications.html
file: bootznotes.com
file: copy-from-web-knowrex.com
file: copy-from-web-seek4info.com
file: copy-from-web-seek4infohe.com
file: copy-from-web-webshopy.com
file: index.php
file: knowrex.com
file: workingframe.com
  
*/

 



answered Apr 9, 2016 by avibootz
...