ディレクトリトラバーサル機能
function virgintree($path="./test") {
echo "
";
$d = dir($path);
while(false !== ($v = $ d->read())) {
if($v == "."
$v == "..")
continue;
$file = $d->path."/".$v ;
echo "- $v";
if(is_dir($file))
virgintree($file);
}
$d->close();
echo "
";
}
dirtree();
?>
http://www.bkjia.com/PHPjc/314378.htmlwww.bkjia.com本当http://www.bkjia.com/PHPjc/314378.html技術記事ディレクトリトラバーサル関数?php function virginree($path="./test") { echo "dl"; $d = dir($path); while(false !== ($v = $d-read()) ) { if($v == "." $v == "..") $file = $d-path."...