Symfony Finder:如何按大小排序文件?

时间:2015-04-23 15:54:26

标签: symfony symfony-finder

Finder Symfony组件功能强大,但遗憾的是,您无法按大小对已创建的文件进行排序。

见下文。 我认为至少对我来说这可能会有所帮助。

1 个答案:

答案 0 :(得分:1)

<?php

$finder = new Finder();
$finder->files()
    ->in(__DIR__)
    ->sort(function (\SplFileInfo $a, \SplFileInfo $b) {
        return filesize($a->getRealpath()) < filesize($b->getRealpath());
    });

foreach ($finder as $file) {
    echo filesize($file->getRealpath()) . PHP_EOL;
}

就是这样!