php 查找指定目录和文件扩展名的实现方法

内容摘要
这篇文章主要为大家详细介绍了php 查找指定目录和文件扩展名的实现方法,具有一定的参考价值,可以用来参考一下。

php查找指定目录和文件扩展名,对此感兴趣的朋友,看看idc笔记做
文章正文

这篇文章主要为大家详细介绍了php 查找指定目录和文件扩展名的实现方法,具有一定的参考价值,可以用来参考一下。

php查找指定目录和文件扩展名,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:

/**
 * 查找指定目录和文件扩展名
 *
 * @param 
 * @arrange (www.idcnote.com)
 **/
function get_files_by_ext($path, $ext){
 
    $files = array();
 
    if (is_dir($path)){
        $handle = opendir($path); 
        while ($file = readdir($handle)) { 
            if ($file[0] == '.'){ continue; }
            if (is_file($path.$file) and preg_match('/\.'.$ext.'$/', $file)){ 
                $files[] = $file;
            } 
        }
        closedir($handle);
        sort($files);
    }
 
    return $files;
 
}
 
/*
** Example:
*/
 
print_r(get_files_by_ext('data/', 'txt'));
 
/*
returns:
 
Array
(
    [0] => readme_1.txt
    [1] => readme_2.txt
)
 
*/

//使用范例:
dir_list('data/', 'txt'); => returns all *.txt files from the data/ folder


/***   代码来自php教程(www.idcnote.com)   ***/

注:关于php 查找指定目录和文件扩展名的实现方法的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!