PHP 获取文件夹内文件数量,要按时间来区别

PHP 获取文件夹内文件数量,要按时间来区别,第1张

可以使用 filemtime 函数来获得文件的最后修改时间,代码:

<php

function getFileCounts($dir)

{

    $dir = rtrim($dir, DIRECTORY_SEPARATOR'/') DIRECTORY_SEPARATOR;

    $handle = opendir($dir);

    $i = array();

    while (false !== $file = (readdir($handle))) {

        $path = $dir  $file;

        if ($file !== '' && $file != '' && !is_dir($path)) {

            $fileTime = @filemtime($path);

            if ($fileTime !== false) {

                $date = date('Ymd', $fileTime);

                isset($i[$date])  $i[$date]++ : $i[$date] = 1;

            }

        }

    }

    closedir($handle);

    return $i;

}

var_dump(getFileCounts("d:"));

请楼主注意代码的正确性哦,看你的代码还是有点乱。

$a = count(glob("",GLOB_ONLYDIR));

$b = count(glob(""));

echo '当前目录下文件夹数量:',$a,',文件数量:',$b-$a;

//这样就可以获取当前目录的文件夹和文件数量了

以上就是关于PHP 获取文件夹内文件数量,要按时间来区别全部的内容,包括:PHP 获取文件夹内文件数量,要按时间来区别、php中怎样获取目录中文件的个数、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9535780.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-29
下一篇 2023-04-29

发表评论

登录后才能评论

评论列表(0条)

保存