$path = "./"; function createDir($path = '.') { if ($handle = opendir($path)) { echo ""; while (false !== ($file = readdir($handle))) { if (is_dir($path.$file) && $file != '.' && $file !='..') printSubDir($file, $path, $queue); else if ($file != '.' && $file !='..') $queue[] = $file; } printQueue($queue, $path); 「 」をエコーします。 } } function printQueue($queue, $path) { foreach ($queue as $file) { printFile($file, $path); } } function printFile($file, $path) { echo " $file"; } function printSubDir($dir, $path) { echo " $dir"; createDir($path.$dir."/"); 「」をエコーします。 } createDir($path); ?> 原文地址:http://www.freejs.net/article_jquerywenzi_112.html http://www.bkjia.com/PHPjc/621624.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/621624.html技術記事 $path = "./"; function createDir($path = '.') { if ($handle = opendir($path)) { echo " "; while (false !== ($file = readdir($handle))) { if (is_dir($path.$file) $file != '.' $file...