一个目录遍历函数
程序员文章站
2022-03-29 22:29:16
...
一个目录遍历函数
function dirtree($path="./test") {
echo "
}
dirtree();
?>
function dirtree($path="./test") {
echo "
- ";
- $v";
if(is_dir($file))
dirtree($file);
}
$d->close();
echo "
$d = dir($path);
while(false !== ($v = $d->read())) {
if($v == "."
$v == "..")
continue;
$file = $d->path."/".$v;
echo "
}
dirtree();
?>
上一篇: 一个目录遍历函数_PHP教程