Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function scandirSorted($path) {
- $sortedData = array();
- foreach(scandir($path) as $file) {
- if(is_file($path . $file)) {
- array_push($sortedData, $file);
- } else {
- array_unshift($sortedData, $file);
- }
- }
- return $sortedData;
- }
Advertisement
Add Comment
Please, Sign In to add comment