How can I list all files and folders in a folder in alphabetical order using PHP?
I used the following files for a.txt , b.txt , c and d.txt , where c is the folder. The problem is that c displayed last, not after b.txt , because it is a folder.
I would also like to check if every file or folder.
<?php $dir = opendir ("folders"); while (false !== ($file = readdir($dir))) { echo "$file <br />"; } ?>
source share