簡體   English   中英

遞歸樹文件夾 function php 不進入子文件夾

[英]Recursive tree folder function php not going into subfolders

我目前正在處理一個 php 文件索引器,我需要創建一個遞歸 function 來創建一個數組,該數組將包含父文件夾的文件和子文件夾列表,子文件夾也是 arrays,其中包含它們的文件及其子文件夾(等等。 .). 由於這是一個學校項目,我不能使用 DirectoryRecursiveIterator 及其兄弟 RecursiveIterator 和 DirectoryIterator。 我的問題是它會掃描父文件夾並找到子文件夾和文件,但不會 go 在子文件夾中查找文件和子文件夾。

代碼

<?php
    class H5AI
    {
        // Properties
        private $_tree;
        private $_path;
    
        // Construct
        public function __construct($_path)
        {
            $_tree = [];
            $parent = $_tree;
            print_r($this->getFiles($_path, $parent));
        }
    
        // Methods
        public function getPath()
        {
            return $this->_path;
        }
        public function getTree()
        {
            return $this->_tree;
        }
    
        public function getFiles($path, $parent)
        {
            //Opening the directory
            $dirHandle = opendir($path);
            while (false !== $entry = readdir($dirHandle)) {
                //If file found
                if (!is_dir($path . DIRECTORY_SEPARATOR . $entry)) {
                    array_push($parent, $entry);
                }
                // When subdirs found (ignore . & ..)
                else if (is_dir($path . DIRECTORY_SEPARATOR . $entry) && $entry !== "." && $entry !== "..") {
                    $newPath = $path . DIRECTORY_SEPARATOR . $entry;
                    $parent[$entry] = [];
                    $this->getFiles($newPath, $parent[$entry]);
                }
            }
            return $parent;
        }
    }
    // Calling function
    $h5a1 = new H5AI($argv[1]);
    
    // Command I use in the terminal
    php index.php "./test_dir"

    //Output
    Array
    (
        [sub_test_dir] => Array
        (
        )

        [0] => test.css
        [sub_test_dir2] => Array
        (
        )
        [1] => test.js
        [2] => test.html
     )

您正在創建一個單獨的數組,其中包含您想要的內容,但未插入到您的父數組中。 你一切都好,你只需要一個小修復:

                //...
                else if (is_dir($path . DIRECTORY_SEPARATOR . $entry) && $entry !== "." && $entry !== "..") {
                $newPath = $path . DIRECTORY_SEPARATOR . $entry;
                $parent[$entry] = [];
                $parent[$entry] = $this->getFiles($newPath, $parent[$entry]); // <-- fix is on this line
            }
class H5AI {

  public function __construct(string $path) {
    print_r($this->getFiles($path));
  }

  public function getFiles(string $directory): array {
    $handle = opendir($directory);
    $entries = [];
    while (true) {
      $entry = readdir($handle);
      if ($entry === false) {
        break;
      }
      $path = $directory . DIRECTORY_SEPARATOR . $entry;
      if (is_file($path) && !str_starts_with($entry, '.')) {
        $entries[] = $entry;
      } elseif (is_dir($path) && !in_array($entry, [ '.', '..', '$RECYCLE.BIN' /* add other dir names to exclude here */ ])) {
        $entries[$entry] = $this->getFiles($path);
      }
    }
    closedir($handle);
    return $entries;
  }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM