1

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

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

4

1 回答 1

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;
}

That's it!

于 2015-04-23T15:54:26.387 回答