去评论
dz插件网

PHP代码实现WordPress页面缓存并将缓存文件保存到cache文件夹中

逝水年华
2023/11/10 22:51:55
这个方法可以将所谓的数据库查询降为0,响应速度极快、支持超高并发,缺点当然也有,比如占用硬盘、更新问题等
  1. <?php// 获取当前请求的URL作为缓存文件名$cache_file = 'cache/' . md5($_SERVER['REQUEST_URI']) . '.html';// 设置缓存过期时间(以秒为单位)$cache_expiration = 3600; // 这里设置为1小时// 检查缓存文件是否存在且未过期if (file_exists($cache_file) && time() - filemtime($cache_file) < $cache_expiration) {    // 缓存文件存在且未过期,直接输出缓存内容并终止脚本执行    readfile($cache_file);    exit;}// 开始页面缓存ob_start();// 在这里插入您的WordPress页面代码// ...// 结束页面缓存,并获取缓存内容$cache_content = ob_get_clean();// 将缓存内容写入缓存文件file_put_contents($cache_file, $cache_content);// 输出缓存内容echo $cache_content;?>