0
我剛開始我的編程工作,並且已經需要幫助,在這裏我非常非常新! :)好吧,我希望我的腳本先顯示文件夾,然後再像文件夾那樣有更優先的文件先上後下。這裏是腳本索引列表和排序文件和文件夾排除PHP
<?php
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle)))
{
if ($file != "." && $file != ".." && !preg_match('/\.php$/i', $file) && !preg_match('/robots.txt$/i', $file))
{
$thelist .= '<LI><a href="'.$file.'">'.$file.'</a>';
}
}
closedir($handle);
}
?>
是啊這就是我所需要的,如何我可以添加代碼excluse PHP文件中顯示? – eXme
如果擴展名是'php'則不要'echo'。 'if($ ext!=「php」)echo' – WasteD
非常感謝我的英雄xD – eXme