首页 >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