Ben (her düzeyde) alfabetik sırayla şu diziyi gerekir, ama asort
benim işlevi özyinelemeli çağrı var (ya da ben öyle düşünüyorum), çünkü çalışmak için görünmüyor; sadece kısmen benim diziyi sıralar, yani alfabetik olan bunun parçaları olacak, ama onlar bozuk olacak.
Yardım!
Ör. Dizin listesi:
apartments.html
js/
application.js
jquery.js
something.js
css/
reset.css
master.css
preview.html
ab_restaurant_at_the_end_of_the_universe.jpg
İstenilen çıktı:
array() {
[0] => string() "ab_restaurant_at_the_end_of_the_universe.jpg"
[1] => string() "apartments.html"
["css"] => array() {
[0] => string() "master.css"
[1] => string() "reset.css"
}
["js"] => array() {
[0] => string() "application.js"
[1] => string() "jquery.js"
[2] => string() "something.js"
}
[2] => string() "preview.html"
}
function directory_list($directory) {
$files = array();
if (is_dir($directory)) {
if ($curr_dir = opendir($directory)) {
while (false !== ($file = readdir($curr_dir))) {
if ($file != "." && $file != ".." && $file != "apartment" && $file != "blog") {
if (is_dir($directory. "/" . $file)) {
$files[$file] = directory_list($directory. "/" . $file);
} else {
$files[] = $file;
}
}
}
closedir($curr_dir);
}
}
//asort($files); <-- doesn't work; sorts, but interrupts itself because of self-referencing call above (I think)
return $files;
}