Php Recursive method of reading directories and files, _php tutorial

Source: Internet
Author: User

Php Recursive method of reading directories and files,


In this paper, we describe the method of Php recursive method to read the directory and file. Share to everyone for your reference. Specific as follows:

Here is an example of PHP recursive method of reading directories and files, the code contains more detailed comments, as follows:

<?phpfunction Showdir ($path) {$DH = Opendir ($path);//Open Directory while (($d = Readdir ($DH)) = False) {//file-by-read, add!=false condition, is to avoid having a file or directory name of 0 if ($d = = '. ' | | $d = = '.. ') {//To determine if it is a. Or: The default will be continue;} echo $d. "
"; if (Is_dir ($path. ' /'. $d)) {//If the directory Showdir ($path. ' /'. $d);//continue to read directories or files under this directory}}} $path = './';//current directory Showdir ($path); >

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/950893.html www.bkjia.com true http://www.bkjia.com/PHPjc/950893.html techarticle php Recursive method of reading directories and files, the example of this article describes the PHP recursive method of reading directories and files. Share to everyone for your reference. Here's an example of this: P ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.