页面静态化,顾名思义是将动态的PHP转化为静态的Html,流程如下图
用户访问index.PHP,如果存在index.html且在有效期内,则直接输出index.html,否则去生成index.html
ob_start()开启PHP缓冲区
ob_clean()清空缓冲区
ob_get_clean()相当于ob_get_contents()+ob_clean()
代码示例
rush:PHP;">
PHP
if (file_exists('./html/index.html') && time() - filectime('./html/index.html') < 30) {
require_once './html/index.html';
} else {
// 引入数据库配置
require_once "./config/database.php";
// 引入Medoo类库
require_once "./libs/medoo.php";
// 实例化db对象
$db = new medoo($config);
// 获取数据
$users = $db->select('user',['uid','username','email']);
// 引入模板
require_once "./templates/index.PHP";
// 写入html
file_put_contents('./html/index.html',ob_get_contents());
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。