一个目录遍历函数_PHP
程序员文章站
2024-04-04 13:23:17
...
一个目录遍历函数
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&MYSQL For win32 版服务器配置说明(1)
下一篇: mysql传值有关问题