Saved from https://stackoverflow.com/questions/8965778/the-correct-way-to-delete-all-files-older-than-2-days-in-php/8965788#8965788
<?php $files = glob(cacheme_directory()."*"); $now = time(); foreach ($files as $file) { if (is_file($file)) { if ($now - filemtime($file) >= 60 * 60 * 24 * 2) { // 2 days unlink($file); } } } ?>