如何对目录进行排序以按字母顺序显示下拉列表?
<select name=country>
<?php
$handle=opendir("images/flags");
while (false!==($file = readdir($handle))) {
if ($file != "." && $file != "..") {
$country = substr($file,0,strpos($file,'.'));
echo "<option value=\"".$file."\"><center>".$country."</center></option>\n";
}
}
closedir($handle);
?>
</select>
答案 0 :(得分:4)
使用
array scandir ( string $directory [, int $sorting_order = SCANDIR_SORT_ASCENDING [, resource $context ]] )
默认情况下,排序顺序按字母顺序升序排列。如果 可选的sorting_order设置为SCANDIR_SORT_DESCENDING,然后是 排序顺序按字母顺序降序排列。如果设置为 SCANDIR_SORT_NONE则结果未排序。
更多阅读scandir
另一种解决方案:
<?php
$dir = "images/flags";
$dh = opendir($dir);
while (false !== ($filename = readdir($dh))) {
$files[] = $filename;
}
sort($files);
print_r($files);
rsort($files);
print_r($files);
?>
答案 1 :(得分:2)
您可以简单地使用:
$ao = new ArrayObject(iterator_to_array(new FilesystemIterator(__DIR__ ."/test", FilesystemIterator::SKIP_DOTS)));
$ao->natsort(); //sort directory
foreach ( $ao as $file ) {
echo $file->getPathname() . PHP_EOL;
}