Well, while agreeing with everyone else that you're using the wrong tool for the job, your question is pretty straightforward so here you go:
- write a PHP script that will run from the command line
- use a tool like cron or windows scheduled task
- invoke the cron every minute/five minutes/etc
Your script would be pretty straightforward:
<?php
$dh = opendir(PATH_TO_DIRECTORY);
while( ($file = readdir($dh)) !== false ) {
if( !preg_match('/^[.]/', $file) ) { // do some sort of filtering on files
$path = PATH_TO_DIRECTORY . DIRECTORY_SEPARATOR . $file;
if( filemtime($path) < strtotime('-1 hour') ) { // check how long it's been around
unlink($path); // remove it
}
}
You could also use find if you're working in Linux, but I see that @Rawkode posted that while I was writing this so I'll leave you with his elegant answer for that solution.