这篇文章主要为大家详细介绍了php 查找指定目录和文件扩展名的实现方法,具有一定的参考价值,可以用来参考一下。
php查找指定目录和文件扩展名,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* 查找指定目录和文件扩展名
*
* @param
* @arrange (512.笔记) www.q1010.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
/*** 代码来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/346-0.html
注:关于php 查找指定目录和文件扩展名的实现方法的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:查找目录,扩展名
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。