ImageBundle
ImageBundle copied to clipboard
Garbagecollect
Is there any method to perform Garbage Collection in Symfony2?
// This could be a cron called each day @3:00AM for instance use Gregwar\Image\GarbageCollect;
// Removes all the files from ../cache that are more than 30 days // old. A verbose output will explain which files are deleted GarbageCollect::dropOldFiles(DIR.'/../cache', 30, true);