按日期列出目录内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按日期列出目录内容相关的知识,希望对你有一定的参考价值。

Loads the contens of a dir an sorts them by the date of creation.
  1. function listdir_by_date($path){
  2. $dir = opendir($path);
  3. $list = array();
  4. while($file = readdir($dir)){
  5. if ($file != '.' and $file != '..'){
  6. // add the filename, to be sure not to
  7. // overwrite a array key
  8. $ctime = filectime($data_path . $file) . ',' . $file;
  9. $list[$ctime] = $file;
  10. }
  11. }
  12. closedir($dir);
  13. krsort($list);
  14. return $list;
  15. }

以上是关于按日期列出目录内容的主要内容,如果未能解决你的问题,请参考以下文章

按日期列出目录内容ASC

按日期列出目录内容

常用python日期日志获取内容循环的代码片段

基础命令行

shell获取目录下最新的文件,文件是以日期命名

如何按创建日期对文件管理器数组进行排序