简单的PHP缓存设计实现代码

前端之家收集整理的这篇文章主要介绍了简单的PHP缓存设计实现代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="36965" class="copybut" id="copybut36965" onclick="doCopy('code36965')"> 代码如下:

<div class="codebody" id="code36965">
<?PHP
//本功能主要是利用文件修改时间函数filemtime与现在时间作减法判断是否更新内容
$cahetime=2;//设置过期时间
$cahefile="cahe.txt";//读写文本 if(file_exists($cahefile) && time()-$cahetime< filemtime($cahefile)){ echo file_get_contents($cahefile);
}
else {
file_put_contents($cahefile,date("y-m-d H:i:s",time()));
}
?>

原文链接:https://www.f2er.com/php/27597.html

猜你在找的PHP相关文章