<?php
  $path = dirname(__FILE__).'/cache';
  if ($handle = opendir($path)) {

    while (false !== ($file = readdir($handle))) {
        if ((time()-filectime($path.'/'.$file)) < 7200) {  // 7200 = 60*60*2 saniye cinsinden
          if (preg_match('/\.html$/i', $file)) {
            unlink($path.'/'.$file);
          }
        }
    }
  }
?>