PHP 按日期列出目录内容

Posted

tags:

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

function listdir_by_date($path){
    $dir = opendir($path);
    $list = array();
    while($file = readdir($dir)){
        if ($file != '.' and $file != '..'){
            // add the filename, to be sure not to
            // overwrite a array key
            $ctime = filectime($data_path . $file) . ',' . $file;
            $list[$ctime] = $file;
        }
    }
    closedir($dir);
    krsort($list);
    return $list;
}

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

按日期列出目录内容ASC

按日期列出目录内容

基础命令行

PHP 列出PHP中的目录内容

PHP 列出目录内容

PHP 列出目录的内容