Avatar of BR
BR
Flag for Türkiye

asked on 

how to list what is inside a directory using PHP?

Dear Experts,
I use PHP 7 and Linux server
I want to list all the folders and files inside a directory

I want to list it like this:

firstfolder
      file1.jpg
      file2.jpg
      file3.jpg
secondefolder
      filename.jpg
      filename2.jpg

How can I do that with PHP?

below code works perfectly fine. However it only brings me one folder, I want to see nested folders and what is inside..

$handle = opendir(dirname(realpath('myfolder')).'/myfolder/1234/');
        while($file = readdir($handle)){
            if($file !== '.' && $file !== '..'){
                echo '<img src="myfolder/1234/'.$file.'" border="0" />';
            }
 }

Open in new window


thank you
LinuxPHP

Avatar of undefined
Last Comment
BR

8/22/2022 - Mon