首頁 >php教程 >php手册 >php 缓存设计

php 缓存设计

WBOY
WBOY原創
2016-06-13 09:55:311146瀏覽

//本功能主要是利用文件修改时间函数filemtime与现在时间作减法判断是否更新内容。

$cahetime=2;//设置过期时间
$cahefile="cahe.txt";//读写文本

if(file_exists($cahefile) && time()-$cahetime  
  echo file_get_contents($cahefile);
 }
 else {
  file_put_contents($cahefile,date("y-m-d H:i:s",time()));
 }
?>

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn