下面使用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/>"; } } ?>
Atas ialah kandungan terperinci php scandir()函数遍历文件夹目录和所有文件实例代码. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!