<div class="codetitle"> <span><a style="CURSOR: pointer" data="4378" class="copybut" id="copybut4378" onclick="doCopy('code4378')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code4378"> <br><?php <BR>//本功能主要是利用文件修改时间函数filemtime与现在时间作减法判断是否更新内容。 <br>$cahetime=2;//设置过期时间 <br>$cahefile="cahe.txt";//读写文本 <br><br>if(file_exists($cahefile) && time()-$cahetime<br>echo file_get_contents($cahefile); <br>} <br>else { <br>file_put_contents($cahefile,date("y-m-d H:i:s",time())); <br>} <br>?> <br> </div>