php读取目录及子目录下所有文件名的方法


function read_all_dir ( $dir ){

    $result = array();
    $handle = opendir($dir);//读资源
    if ($handle){
        while (($file = readdir($handle)) !== false ){
            if ($file != '.' && $file != '..'){
                $cur_path = $dir . DIRECTORY_SEPARATOR . $file;
                if (is_dir($cur_path )){//判断是否为目录,递归读取文件
                    $result['dir'][$cur_path] = read_all_dir($cur_path );
                }else{
                    $result['file'][] = $cur_path;
                }
            }
        }
        closedir($handle);
    }
    return $result;
}

$file =read_all_dir('G:\wamp\www');
print_r($file);die;


你可能感兴趣的:(PHP)