我有一个目录,里面装满了我试图回显的文件。如果文件是一个图像,则图像本身将被回显。如果文件不是图像,则文件名将被回显。
下面的代码运行得很好,但我似乎无法按日期排序。这些文件是随机输出的。
我该如何使文件按上次修改(最新优先)排序。
<?php
$blacklist = array("index.php");
$ext = pathinfo($files, PATHINFO_EXTENSION);
if ($handle = opendir('.')) {
$valid_image = array("jpg", "jpeg", "png", "gif");
while (false !== ($entry = readdir($handle))) {
krsort($entry);
if ($entry != "." && $entry != ".." && !in_array($entry, $blacklist)) {
$exploded = explode('.', $entry);
if(in_array(end($exploded), $valid_image))
{
echo "<div><h4>"; echo date('d F Y', filemtime($file)) . "</h4><a href='" . $entry . "'><img src='".$entry."'></a></div><hr>";
}
else
{
echo "<div><h4>"; echo date('d F Y', filemtime($file)) . "</h4><a href='" . $entry . "'>" . $entry . "</a></div>";
}
}
}
closedir($handle);
}
?>
// Create an empty array, outside your loop
$files = array();
while (false !== ($entry = readdir($handle))) {
if(in_array(end($exploded), $valid_image)){
// Instead of echoing the string, add it to the array, using filemtime as the array key
$files[filemtime($file)] = "<div><h4>".date('d F Y', filemtime($file)) . "</h4><a href='$entry'><img src='$entry'></a></div><hr>";
} else...
}
// reverse sort on the array
krsort($files);
// output the array in a loop
foreach($files as $file){
echo $file;
}