1

我正在使用一段代码,它使用某个目录中的文件夹列表填充组合框:

<?php
echo '<form>';
$path = "images/";
$handle = opendir($path);   
echo "<select style='width:80%' name='URL' onchange='window.location.href=this.form.URL.options[this.form.URL.selectedIndex].value'><option value>Select Folder...</option>";     
while ($file = readdir($handle)) {
    if (substr($file,0,1) != ".") {
    echo "<option value ='/view.php?user=".$file."'>".$file."</option>";
    }   
}
echo '</select></form>';
closedir($handle);  
?>

这工作正常,除了它以随机顺序显示列表,有没有一种方法可以在组合框中生成列表之前实现对列表进行排序?

谢谢。

4

1 回答 1

0

像这样的东西:

while ($file = readdir($handle)) {
    if (substr($file,0,1) != ".") {
        $tmparray[] = $file;
    }   
}
sort($tmparray);
foreach($tmparray as $file)
    echo "<option value ='/view.php?user=".$file."'>".$file."</option>";
于 2013-06-12T12:05:35.447 回答