PHP scandir 得到该文件下的所有文件和文件夹

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

运行上面的程序之后,得到的结果是这样的。

这个文件的输出,说明我系统的 PHP  scandir 函数正常运行了。