PHP遍歷目錄和文件列表

xm52 9年前發布 | 883 次閱讀 PHP

<?php 
define('DS', DIRECTORY_SEPARATOR);

class getDirFile{

//返回數組 
private $DirArray  = array(); 
private $FileArray = array(); 
private $DirFileArray = array(); 

private $Handle,$Dir,$File; 

//獲取目錄列表 
public function getDir( & $Dir ){ 
    if( is_dir($Dir) ){ 
        if( false != ($Handle = opendir($Dir)) ){ 
            while( false != ($File = readdir($Handle)) ){ 
                if( $File!='.' && $File!='..' && !strpos($File,'.') ){ 
                    $DirArray[] = $File; 
                } 
            } 
            closedir( $Handle ); 
        } 
    }else{ 
        $DirArray[] = '[Path]:\''.$Dir.'\' is not a dir or not found!'; 
    } 
    return $DirArray; 
} 

//獲取文件列表 
public function getFile( & $Dir ){ 
    if( is_dir($Dir) ){ 
        if( false != ($Handle = opendir($Dir)) ) { 
            while( false != ($File = readdir($Handle)) ){ 
                if( $File!='.' && $File!='..' && strpos($File,'.') ){ 
                    $FileArray[] = $File; 
                } 
            } 
            closedir( $Handle ); 
        } 
    }else{ 
        $FileArray[] = '[Path]:\''.$Dir.'\' is not a dir or not found!'; 
    } 
    return $FileArray; 
} 

//獲取目錄/文件列表 
public function getDirFile( & $Dir ){ 
    if( is_dir($Dir) ){ 
        $DirFileArray['DirList'] = $this->getDir( $Dir ); 
        if( $DirFileArray ){ 
            foreach( $DirFileArray['DirList'] as $Handle ){ 
                $File = $Dir.DS.$Handle; 
                $DirFileArray['FileList'][$Handle] = $this->getFile( $File ); 
            } 
        } 
    }else{ 
        $DirFileArray[] = '[Path]:\''.$Dir.'\' is not a dir or not found!'; 
    } 
    return $DirFileArray; 
} 

} ?>
</pre>
實例:(相對路徑或絕對路徑)

1.獲取目錄列表

<?php 
$Dir_dir  = './example';

$getDirFile = new getDirFile(); $getDir = $getDirFile->getDir( $Dir_dir );

print_r($getDir); ?> 顯示: [html] view plaincopy Array ( [0] => example_one [1] => example_two ) </pre>
2.獲取文件列表

<?php 
$File_one_dir = './example/example_one'; 
$File_two_dir = 'E:/Workspace/mycode/getDirFile/example/example_two';

$getDirFile = new getDirFile(); $getFile_one = $getDirFile->getFile( $File_one_dir ); $getFile_two = $getDirFile->getFile( $File_two_dir );

print_r($getFile_one); print_r($getFile_two); ?> </pre>
顯示:

Array 
( 
    [0] => example.sql 
    [1] => example.txt 
)

Array ( [0] => example.php ) </pre>
3.獲取目錄/文件列表

<?php 
$Dir_dir  = './example';

$getDirFile = new getDirFile(); $getDirFile = $getDirFile->getDirFile( $Dir_dir );

print_r($getDirFile); ?> </pre>
顯示:

Array 
( 
    [DirList] => Array 
        ( 
            [0] => example_one 
            [1] => example_two 
        )

[FileList] => Array 
    ( 
        [example_one] => Array 
            ( 
                [0] => example.sql 
                [1] => example.txt 
            ) 

        [example_two] => Array 
            ( 
                [0] => example.php 
            ) 

    ) 

) </pre>

 本文由用戶 xm52 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!