-
-
/** - * 現在のディレクトリとサブディレクトリ内のすべてのファイルを取得します
- * @param string $dir パス名
- * @return array すべてのファイルのパス配列
- */
- function get_files1($dir) {
- $files = array();
if (!is_dir($dir)) {
- return $files;
- }
$handle = opendir($dir);
- if($handle) {
- while(false !== ( $file = readdir($handle))) {
- if ($file != '.' && $file != '..') {
- $filename = $dir . $file;
- if(is_file) ($filename)) {
- $files[] = $filename;
- }else {
- $files = array_merge($files, get_files($filename));
- }
- }
- } // 終了 while
- closedir($handle) );
- }
- return $files;
- } // 関数を終了
-
コードをコピー
方法 2、glob を使用
glob() 関数は、通常のシェルで使用される規則と同様に、libc glob() 関数で使用される規則に従って、パターンに一致するすべてのファイル パスを検索します。
略語展開やパラメータ置換は行われません。
一致するファイル/ディレクトリを含む配列を返します。エラーが発生した場合は FALSE を返します。
この機能はリモート ファイルでは機能しません。チェックされるファイルにはサーバーのファイル システムを通じてアクセスする必要があります。
この機能は、特定のディレクトリ内のファイルを検索するために使用され、アーティファクトと呼ぶことができます。
例:
-
- /**
- * 現在のディレクトリ内のすべてのファイルを取得します
- * @param string $dir パス名
- * @return array すべてのファイルのパス配列
- */
- function get_files($dir) {
- $dir = realpath($dir) . array();
if (!is_dir($dir)) {
- return $files;
- }
$pattern = $dir . ;
- $file_arr = glob($pattern);
foreach ($file_arr as $file) {
- if (is_dir($file)) {
- $temp = get_files($file);
if (is_array($temp)) {
- $files = array_merge($files, $temp);
- }
- }else {
- $files[] = $file;
- } / / end if
- }
- return $files;
- } // end function
- ?>
-
-
-
コードをコピー
方法 3、ディレクトリ クラスを使用
ディレクトリを読み取るための偽のオブジェクト指向メカニズム。
dir() 関数は、ディレクトリ ハンドルを開き、オブジェクトを返します。このオブジェクトには、read()、rewind()、close() の 3 つのメソッドが含まれています。そして、2つの物件が用意されています。 handle 属性は、readdir()、rewinddir()、closedir() などの他のディレクトリ関数で使用できます。 path 属性は、開かれているディレクトリのパスに設定されます。
成功した場合、関数はディレクトリ ストリームを返し、そうでない場合は false とエラーを返します。関数名の前に「@」を追加すると、エラー出力を非表示にできます。
注: read メソッドによって返されるディレクトリ エントリの順序はシステムに依存します。
注: この関数は内部クラス Directory を定義します。つまり、ユーザー独自のクラスを同じ名前で定義することはできません。
例:
- /**
- * 現在指定されているディレクトリ内のすべてのファイルを再帰的に表示します
- * dir 関数を使用します
- * @param string $dir ディレクトリアドレス
- * @return array $files ファイルリスト
- * @site bbs.it-home.org
- */
- function get_files($dir) {
- $files = array();
if (!is_dir($dir)) {
- return $files;
- }
$d = dir($dir);
- while (false !== ($file = $d- >read())) {
- if ($file != '.' && $file != '..') {
- $filename = "/" . $file;
- < ;p>if(is_file($filename)) {
- $files[] = $filename;
- }else {
- $files = array_merge($files, get_files($filename));
- }
- }
- }
- $d ->close();
- return $files;
- }
-
-
-
コードをコピー
方法 4、RecursiveDirectoryIterator クラスを使用する
このメソッドは PHP 5.0 以降で有効です
例:
-
-
- /**
- * RecursiveDirectoryIterator を使用してファイルを走査し、すべてのファイル パスをリストします
- * @param RecursiveDirectoryIterator $dir はディレクトリの RecursiveDirectoryIterator インスタンスを指定します
- * @return array $files ファイル リスト
- */
- function get_files($dir) {
- $files = array();
for (; $dir->valid(); $dir->next()) {
- if ($dir->isDir() && !$dir->isDot()) {
- if ($dir->isDir() ->haschildren()) {
- $files = array_merge($files, get_files($dir->getChildren()));
- };
- }else if($dir->isFile()){
- $ files[] = $dir->getPathName();
- }
- }
- return $files;
- }
$path = "/var/www";
- $dir = new RecursiveDirectoryIterator ($path);
- print_r(get_files($dir));
-
コードをコピー
|