php獲取資料夾中檔案的兩種方法

2020-07-16 10:05:54

php獲取資料夾中檔案的兩種方法:

傳統方法:

在讀取某個資料夾下的內容的時候

使用 opendir readdir結合while迴圈過濾 當前資料夾和父資料夾來操作的

function readFolderFiles($path)
{
    $list     = [];
    $resource = opendir($path);
    while ($file = readdir($resource))
    {
        //排除根目錄
        if ($file != ".." && $file != ".")
        {
            if (is_dir($path . "/" . $file))
            {
                //子資料夾,進行遞回
                $list[$file] = readFolderFiles($path . "/" . $file);
            }
            else
            {
                //根目錄下的檔案
                $list[] = $file;
            }
        }
    }
    closedir($resource);
    return $list ? $list : [];
}

方法二
使用 scandir函數 可以掃描資料夾下內容 代替while迴圈讀取

function scandirFolder($path)
{
    $list     = [];
    $temp_list = scandir($path);
    foreach ($temp_list as $file)
    {
        //排除根目錄
        if ($file != ".." && $file != ".")
        {
            if (is_dir($path . "/" . $file))
            {
                //子資料夾,進行遞回
                $list[$file] = scandirFolder($path . "/" . $file);
            }
            else
            {
                //根目錄下的檔案
                $list[] = $file;
            }
        }
    }
    return $list;
}
以上就是php獲取資料夾中檔案的兩種方法的詳細內容,更多請關注TW511.COM其它相關文章!