这段代码来自phpcms觉得很好,所以拿出来分享给大家,有需要的朋友可以参考一下。
-
-
-
-
-
-
-
-
-
- function scan_file_lists($filepath, $subdir = 1, $ex = '', $isdir = 0, $md5 = 0, $enforcement = 0) {
- static $file_list = array();
- if ($enforcement) $file_list = array();
- $flags = $isdir ? GLOB_ONLYDIR : 0;
- $list = glob($filepath.'*'.(!emptyempty($ex) && emptyempty($subdir) ? '.'.$ex : ''), $flags);
- if (!emptyempty($ex)) $ex_num = strlen($ex);
- foreach ($list as $k=>$v) {
- $v1 = str_replace(PHPCMS_PATH, '', $v);
- if ($subdir && is_dir($v)) {
- scan_file_lists($v.DIRECTORY_SEPARATOR, $subdir, $ex, $isdir, $md5);
- continue;
- }
- if (!emptyempty($ex) && strtolower(substr($v, -$ex_num, $ex_num)) == $ex) {
- if ($md5) {
- $file_list[$v1] = md5_file($v);
- } else {
- $file_list[] = $v1;
- }
- continue;
- } elseif (!emptyempty($ex) && strtolower(substr($v, -$ex_num, $ex_num)) != $ex) {
- unset($list[$k]);
- continue;
- }
- }
- return $file_list;
- }
|