首頁 >php教程 >php手册 >遍历某个目录以及其目录的文件

遍历某个目录以及其目录的文件

WBOY
WBOY原創
2016-06-06 19:33:23960瀏覽

遍历某个目录以及其目录的文件,仅用于linux 无 ?phpclass path_list { function dir_list($dir) { if (is_dir ( $dir ) === false) { exit ( '目录路径不存在!' ); } $list = scandir ( $dir ); foreach ( $list as $key = $file ) { if (($file != '.') ($f

遍历某个目录以及其目录的文件,仅用于linux
<?php

class path_list {

 function dir_list($dir) {

 if (is_dir ( $dir ) === false) {

 exit ( '目录路径不存在!' );

 }

 

 $list = scandir ( $dir );

 

 foreach ( $list as $key => $file ) {

 if (($file != '.') && ($file != '..')) {

 if (is_dir ( $dir . '/' . $file )) {

 $row [$file] = $this->dir_list ( $dir . '/' . $file );

 } else {

 $row [$file] = $file;

 }

 }

 }

 

 return $row;

 }

}
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn