一个目录遍历函数

2018-09-07 12:12

阅读:597

  
一个目录遍历函数 <?php

function dirtree($path=./test) {
echo <dl>;
$d = dir($path);
while(false !== ($v = $d->read())) {
if($v == .
$v == ..)
continue;
$file = $d->path./.$v;
echo <dt>$v;
if(is_dir($file))
dirtree($file);
}
$d->close();
echo </dl>;
}

dirtree();
?>


评论


亲,登录后才可以留言!