PHP opendir(),按日期排序

时间:2014-03-10 07:15:13

标签: php sorting opendir

我有一个脚本从目录中检索文件,需要按日期对文件进行排序。最新照片上传到列表顶部。请告诉任何人?

<?
$slozka = "./gallery/holiday/"; //select the folder from which you want to list files
$thumb= "thumb"; //the name of the folder thumbnails
$vypis = opendir($slozka); //open folder
$celkem = '0'; //beginning number of photos

while (false!==($file = readdir($vypis))) //reading files
{ 
    if($file!="."&&$file!=".."&&!is_dir($file)&&$file!=$thumb) //search through folder
    { 
        $celkem++; //count the number of pictures
        $filetitle = $file;
        $nahrada = array("_", ".jpg", ".png", ".gif");
        $filetitle = str_replace($nahrada, " ", "$filetitle");

        if (file_exists($slozka.$thumb.'/'.$file))
        { //If there is a preview and display it ..
            echo "<li><a href=\"gallery/holiday/".$file."\" alt=\"".$file."\"
title=\"".$filetitle."\" class=\"holiday\" /><img src=\"gallery/holiday/thumb/".$file."\" alt=\"".$file."\"></a><span class=\"nazvy\">".$filetitle."</span></li>";
        }//If there is no way it will create ...
        else 
            echo "<li><a href=\"gallery/holiday/".$file."\" alt=\"".$file."\" class=\"holiday\" /><img src=\"thumb.php?nazev=".$file."&amp;cesta=".$slozka."\" alt=\"".$file."\"></a><span class=\"nazvy\">".$filetitle."</span></li>";
    } 
}     
echo "</ul><div id=\"soucet\">Celkem fotek : ".$celkem."</div>"; // print the number of photos in the gallery ...
closedir($vypis); //close folder
?>

2 个答案:

答案 0 :(得分:0)

您可以使用终端命令find功能从目录中获取最新文件。使用您正在检查的文件模式对目录进行反向排序并循环。然后,您将按日期获取最新文件。

查看链接以供参考。

https://superuser.com/questions/294161/unix-linux-find-and-sort-by-date-modified

Ex :

find . -type f -name '{$fileFormat}*'.txt -exec ls -tr {} \; | sort -r | head -10
$output = array();
@chdir($destinationDir);
@exec($command, $output);

然后循环$output

答案 1 :(得分:0)

你应该搜索过这个。

本地很明显opendir()不检索文件修改,也不检索创建日期。

简单搜索“文件修改后的最后一个php”将重定向到此处:

https://www.google.com/search?q=php+file+modified+last

第一个结果是php.net的doc:

http://php.net/filemtime

你可以使用的地方

date ("F d Y H:i:s.", filemtime($file)

为了检索列表的日期时间戳。

您可以在其顶部构建数组,并通过其中一个数组排序函数(http://www.php.net/manual/en/array.sorting.php)对其进行排序

最后但并非最不重要 - 英语是官方编程语言,因此请删除此变量命名,如$celkem$slozka