TypechoJoeTheme

至尊技术网

统计
登录
用户名
密码
/
注册
用户名
邮箱

悠悠楠杉

网站页面
搜索到 1 篇与 的结果
2020-12-15

PHP将动态网页生成HTML纯静态网页

PHP将动态网页生成HTML纯静态网页
<?php start(array( 'index_file' => __DIR__ . '/2.php', //你首页的文件名 'cache_file' => __DIR__ . '/cache/index/', //要缓存的路径 'cache_index_file' => 'index.html', //要缓存的文件名 'expire_seconds' => 43200, //过期的秒数(60秒=1分钟) )); function start($config) { $remain_seconds = $file_timestamp = 0; if (hasCached($config, $remain_seconds, $file_timestamp)) { $html = ''; $html .= file_get_contents($config['cache_file'] . $config['cache_index_file']); die($...
2020年12月15日
670 阅读
0 评论