曾處理過一個案子: 不透過【網頁上傳】方式, 而是透過【網路磁碟 or FTP】方式傳送檔案, 而網頁自動顯示該目錄的檔案結構.
範例
// 目錄掃描 $dir_content = scandir(__DIR__); // 先顯示目錄 foreach( $dir_content as $file ) { if( is_dir($file) ) echo "/" . $file . "
"; } // 後顯示檔案 foreach( $dir_content as $file ) { if( is_file($file) ) echo $file . "
"; }
以上, 提供參考.