Smarty(); $this->template_dir .=($stmp_dir) ? "/".$stmp_dir : ""; $this->compile_dir .=($stmp_dir) ? "/".$stmp_dir : ""; } } $body =new mySmarty(); //■60分以上経過したファイルデータ削除 $ddir=DLV."temp/"; $dir=dir($ddir); while($file=$dir->read()){ if (!is_dir($file)){ if ((time()-filemtime($ddir.$file))>60*60) { if (file_exists($ddir.$file)){ @unlink($ddir.$file); } } } } $dir->close(); ?>