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