PHP文件系统实例

遍历目录并保存在数组中

 $dir){
        $dir = iconv("GBK", "UTF-8", $dir);
        if($dir != '.' and $dir != '..'){
            if(is_dir($path.DIRECTORY_SEPARATOR.$dir)){
                $result[$dir] = loopDir($path.DIRECTORY_SEPARATOR.$dir);
            }else{
                $result[] = $dir;
            }
        }
    }
    return $result;
}
?>

测试结果如下:


\scandir.PNG
\scandir.PNG

备注:
1、测试环境为win10,通过iconv函数保证了函数可处理中文字符

2、但当目录为中英文混合时,会出现以下错误:
Detected an illegal character in input string

你可能感兴趣的:(PHP文件系统实例)