PHP manual for scandir: By default, the sorted order is alphabetical in ascending order.
I'm building a file browser (in Windows), so I want the addresses to be returned sorted by folder/file, then alphabetically in those subsets.
Example: Right now, I scan and output
Aardvark.txt
BarDir
BazDir
Dante.pdf
FooDir
and I want
BarDir
BazDir
FooDir
Aardvark.txt
Dante.pdf
Other than a usort and is_dir() solution (which I can figure out myself), is there a quick and efficient way to do this?
The ninja who wrote this comment is on the right track - is that the best way?
UPDATE
If it's helpful, @alex's method, plus a file filter:
function globdir($filepath) {
$dirs = glob($filepath.'/*', GLOB_ONLYDIR);
$files = glob($filepath.'/*');
$all = array_unique(array_merge($dirs,$files));
$filter = array($filepath.'/Thumbs.db');
return array_diff($all,$filter);
}
If needed, call array_merge on the final results to remove empty keys left by array_diff.