0

我将如何对目录进行排序以按字母顺序显示下拉列表?

<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>
4

2 回答 2

4

采用

array scandir ( string $directory [, int $sorting_order = SCANDIR_SORT_ASCENDING [, resource $context ]] )

默认情况下,排序顺序是按字母升序排列的。如果可选的排序顺序设置为 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);

?>
于 2012-12-26T08:59:34.807 回答
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; 
}
于 2012-12-26T09:06:29.237 回答