对于文件管理,我曾经使用scandir
和foreach
渲染文件夹和文件,并对它们进行排序:首先是目录,然后是文件
$files = array_diff( scandir($dir), array(".", "..", "tmp") );
usort ($files, create_function ('$a,$b', '
return is_dir ($a)
? (is_dir ($b) ? strnatcasecmp ($a, $b) : -1)
: (is_dir ($b) ? 1 : (
strcasecmp (pathinfo ($a, PATHINFO_EXTENSION), pathinfo ($b, PATHINFO_EXTENSION)) == 0
? strnatcasecmp ($a, $b)
: strcasecmp (pathinfo ($a, PATHINFO_EXTENSION), pathinfo ($b, PATHINFO_EXTENSION))
))
;
'));
foreach($files as $file){
if(is_dir($dir.'/'.$file)) {
echo $file; // $dir is directory(folder)
} else {
echo $file;
}
由于渲染大量文件时scandir变慢,我现在使用opendir
和readdir
如下:
if ($handle = opendir($dir)) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != ".." && $file != "tmp") { //ignoring dot paths under linux and tmp folder
if(is_dir($dir.'/'.$file)) {
echo $file; // $dir is directory(folder)
} else {
echo $file;
}
但是现在排序不再起作用了。 如何首先对目录进行排序,然后对文件进行排序?