PHP获取当前文件夹内所有文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
error_reporting(0);
//程序根目录
define("ROOT",dirname(__FILE__));

//文件操作函数
function opdir($path){
//打开目录
$dir=opendir($path);

while(($file=readdir($dir)) !== false){
//去除 . 和 ..
if($file != '.' && $file != '..'){
//判断是否是文件
if(is_file($path.'/'.$file)){
$arr[file][]=$file;
}

//判断是否是目录
if(is_dir($path.'/'.$file)){
$arr[dir][]=$file;
}

}
}
//关闭打开的目录
closedir($path);
//返回结果数组
return $arr;
}

$eoo=opdir(ROOT);

print_r($eoo);
0%