php 缓存设计

前端之家收集整理的这篇文章主要介绍了php 缓存设计前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. <?PHP 
  2. //本功能主要是利用文件修改时间函数filemtime与现在时间作减法判断是否更新内容 
  3. $cahetime=2;//设置过期时间 
  4. $cahefile="cahe.txt";//读写文本 
  5. if(file_exists($cahefile) && time()-$cahetimefilemtime($cahefile)){ 
  6.   
  7.   echo file_get_contents($cahefile); 
  8.  } 
  9.  else { 
  10.   file_put_contents($cahefile,date("y-m-d H:i:s",time())); 
  11.  } 
  12. ?> 

猜你在找的PHP相关文章