Recursively reads the directory structure into an array and saves the directory structure PHP novice

Source: Internet
Author: User
Recursively reads the directory structure into an array and saves the directory structure novice PHP

$arr _dir = Array ();
$path = './';
Recursively reads the directory structure into an array and saves the directory structure
function MakeDir ($path,& $arr)
{
$dir = Opendir ($path);
while (($file =readdir ($dir))!==false)
{
if ($file! = '. ') && $file! = ' ... ')
{
Var_dump ($file);
if (!is_dir ($path. ' /'. $file))
{
$arr [] = $file;
}
Else
{

MakeDir ($path. ' /'. $file, $arr [$file]);
}
}
}
Closedir ($dir);
}
MakeDir ($path, $arr _dir);
Var_dump ($arr _dir);
?>



------Solution--------------------
What's the problem?
------Solution--------------------

------Solution--------------------
Thought you were having a problem. The Wolf is coming ...
------Solution--------------------
Isn't it easy to use iterators?
$p = './';
$ite = new Recursivedirectoryiterator ($p);
foreach (New Recursiveiteratoriterator ($ite) as $filename = + $cur) {
if (Is_dir ($filename)) continue;
$res [] = $filename;
}
Print_r ($res);
  • 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.