function checkfile($file,$cachetime=60)
{
$file=ROOT_PATH.'/data/cache/'.$file.'.php';
if(is_file($file))
{
//如果文件修改(右鍵點擊這個文件屬性,有一個:修改時間)+緩存時間60秒> 當前系統時間,說明緩存未過期
if((filemtime($file)+$cachetime>time()) || !$cachetime)
{
return true; //不更新文件
}
else
{
return false; //更新文件
}
}
return false;
}
作者:荒村聽雨