欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php scandir()函数遍历文件夹目录和所有文件实例代码

程序员文章站 2022-04-29 10:08:17
...
scandir() 函数返回指定目录中的文件和目录的数组

下面使用php scandir函数遍历文件夹目录和所有文件,代码如下:

<?php
$dir = "."; //当前目录
list_file($dir);
function list_file($dir){
$list = scandir($dir); // 得到该文件下的所有文件和文件夹
foreach($list as $file){//遍历
$file_location=$dir."/".$file;//生成路径
if(is_dir($file_location) && $file!="." &&$file!=".."){ //判断是不是文件夹
echo "------------------------sign in $file_location------------------";
list_file($file_location); //继续遍历
}
echo "<br/>";
}
}
?>

以上就是php scandir()函数遍历文件夹目录和所有文件实例代码的详细内容,更多请关注其它相关文章!