过滤数组并排除dir

时间:2016-06-11 16:34:46

标签: php arrays

我有这个代码:

   foreach($folder as $file)
{
    if (!in_array($file, array('.', '..', 'index.htm', 'index.html')) && !in_array(substr($file, -4), array('.jpg', '.mp3', '.vtr')) && !is_dir($file))
    {
        $files[$file] = filemtime($path.'/'.$file);     
    }
}

ksort($files);
//use asort to sort from old to new
echo "$post_title";
$i=0;

但是我试图让它跳过DIR,我一直在寻找但没有铁砧。

任何人都可以帮忙解决这个问题。

0 个答案:

没有答案