三度网教程:是一个免费提供流行视频软件教程、在线学习分享的学习平台!

再点一次Active的名,我把你的函数技巧扩充了一下,嘻嘻,现在能以树型结构列出整个磁盘上的文件啦。

时间:2023-12-20作者:未知来源:三度网教程人气:


把你的函数改写成递归函数,现在这个函数可以列出某指定目录内的所有文件及子目录内的文件啦。

<?
function listdir($path)
{
 chdir($path);
 $d = dir($path);
 $d->path."<br>\n";
 print "<ul style='font-size:9pt;'>";
 while($entry=$d->read()){
if ($entry<>"." and $entry<>".." ){
$last=filemtime($entry);
print "<li>";
$name=is_dir($entry)?("<img src=http://cfan.net.cn/info/folder.gif>".$entry):("<img src=http://cfan.net.cn/info/file.gif>".$entry);
print $name." --- ".date("Y/m/d h:i:s",$last);
if (is_dir($path."/".$entry)){
listdir($path."/".$entry);
}
}
 }
 $d->close();
 print "</ul>";
}

$listpath="c:";
echo $listpath;
listdir($listpath);

?>


关键词:  再点一次Active的名  我把你的函数技巧扩充了一下  嘻嘻  现在能以树型结构列出整个磁盘上的文件啦。





Copyright © 2012-2018 三度网教程(http://www.3du8.cn) .All Rights Reserved 网站地图 友情链接

免责声明:本站资源均来自互联网收集 如有侵犯到您利益的地方请及时联系管理删除,敬请见谅!

QQ:1006262270   邮箱:kfyvi376850063@126.com   手机版