php scandir()函数遍历文件夹目录和所有文件实例代码
程序员文章站
2022-04-08 11:43:27
...
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()函数遍历文件夹目录和所有文件实例代码的详细内容,更多请关注其它相关文章!
下一篇: css3制作一个简单的火箭动画(附代码)