<?php
foreach(glob('uploads/*.json') as $m){
 $j=json_decode(file_get_contents($m),true);
 if(time()>$j['expire']){
   @unlink('uploads/'.$j['id'].'.bin');
   @unlink($m);
 }
}
echo 'OK';
