一个目录遍历函数
时间:2021-09-22 07:10:44|栏目:PHP代码|点击: 次
一个目录遍历函数 <?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();
?>
上一篇:php获取目录中所有文件名及判断文件与目录的简单方法
栏 目:PHP代码
下一篇:PHP中的多行字符串传递给JavaScript的两种方法
本文标题:一个目录遍历函数
本文地址:http://www.codeinn.net/misctech/176722.html