3v4l.org

run code in 300+ PHP versions simultaneously
<?php $path = '/home/example/public_html/temp/'; if ($handle = opendir($path)) { while (false !== ($file = readdir($handle))) { $path_parts = pathinfo($path . $file); $fileName = $path_parts['filename']; if((time() - strtotime($fileName)) > 24*30*3600) { unlink($path . $file); } } closedir($handle); } ?>

preferences:
26.22 ms | 410 KiB | 5 Q