我正在使用 readdir 将文件循环到一个数组中并取回这个结果:
Array
(
[0] => Array
(
[name] => /css
[type] => directory
[size] => 0
)
[1] => Array
(
[name] => /index.html
[type] => file
[size] => 1208
)
[2] => Array
(
[name] => /js
[type] => directory
[size] => 0
)
)
我的目标是让它们采用典型的“文件结构格式”,而它首先按类型(目录然后文件)排序,然后按字母顺序排列。