我正在使用一段代码,它使用某个目录中的文件夹列表填充组合框:
<?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);
?>
这工作正常,除了它以随机顺序显示列表,有没有一种方法可以在组合框中生成列表之前实现对列表进行排序?
谢谢。