Home >php教程 >php手册 >php递归法读取目录及文件的方法

php递归法读取目录及文件的方法

WBOY
WBOYOriginal
2016-06-06 20:11:381365browse

这篇文章主要介绍了php递归法读取目录及文件的方法,是非常经典的递归算法,涉及php操作文件及目录的技巧,需要的朋友可以参考下

本文实例讲述了php递归法读取目录及文件的方法。分享给大家供大家参考。具体如下:

这里实例分析php递归法读取目录及文件的方法,代码中包含较为详尽的注释,如下所示:

"; if(is_dir($path.'http://www.jb51.net/'.$d)){//如果为目录 showdir($path.'http://www.jb51.net/'.$d);//继续读取该目录下的目录或文件 } } } $path = './';//当前目录 showdir($path); ?>

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn