Finder Symfony 组件功能强大,但不幸的是,您无法按大小对创建的文件进行排序。
见下文。我认为这可能会有所帮助,至少对我来说是这样。
<?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!