PHP uses recursive methods to list all files in the current directory, _php tutorial

Source: Internet
Author: User

PHP uses recursive methods to list all files in the current directory,


This example describes how PHP uses recursion to list all files in the current directory. Share to everyone for your reference. The implementation method is as follows:

<?php
function FileList ($pathname, $i) {
Define a filelist function
$dir =opendir ($pathname);
while (($file =readdir ($dir))!== false) {
$fname = $pathname. " /". $file;
if (Is_dir ($fname) && $file! = "." && $file! = "...") {
for ($tmp =0; $tmp <=8* $i; $tmp + +)
echo "";
Echo '';
echo "is directory:". $fname. "
";
FileList ($fname, $i + 1);
}elseif ($file! = "." && $file! = "...") {
for ($tmp =0; $tmp <=8* $i; $tmp + +)
echo "";
Echo '';
echo $fname. "
";
}
}
ChDir ("..");
Closedir ($dir);
}
FileList ("/home/zhou/shell", 0);
Lists all files and directories under/home/zhou/shell.
?>

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

http://www.bkjia.com/PHPjc/1011253.html www.bkjia.com true http://www.bkjia.com/PHPjc/1011253.html techarticle PHP uses recursion to list all the files in the current directory, and this article explains how PHP uses recursion to list all the files in the current directory. Share to everyone for your reference ...

  • 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.