PHP 文件夹读取
作者:互联网
方法一
读取某个文件夹下的内容, opendir readdir结合while循环过滤,得到当前文件夹和父文件夹来操作
function readFolderFiles($path)
{
$list = [];
$resource = opendir($path);
while ($file = readdir($resource))
{
//排除根目录
if ($file != ".." && $file != ".")
{
//根目录下的文件
$list[] = $file;
}
}
closedir($resource);
return $list ? $list : [];
}
方法二
scandir函数 可以扫描文件夹下内容 代替while循环读取(scandir,默认升序。设置降序scandir(path,1))
function scandirFolderfiles($path)
{
$list = scandir($path);
return $list;
}
标签:resource,读取,list,文件夹,file,path,PHP,scandir 来源: https://www.cnblogs.com/zydr/p/14066660.html