Skip to main content

php遍历文件夹里面文件名称函数,过滤”.”,”..”并返回一个文件名的数组

function foreach_file_name($file_pacth = './img')
{
if(!is_dir($file_pacth))
{
return false;
}
$handle = opendir($file_pacth);
$file_name_list = array();

while (false !== ($file = readdir($handle)))
{
if (!is_dir($file_pacth.$file))
{
$file_name_list[] = "$file";
}
}
return $file_name_list;
}