欢迎各位兄弟 发布技术文章
这里的技术是共享的
打开 /include/global.func.php 文件
找到 template 函数,即以下代码
function template($template = ‘index’, $dir = ”) {
global $CFG;
$to = $dir ? DT_CACHE.’/tpl/’.$dir.’-‘.$template.’.php’ : DT_CACHE.’/tpl/’.$template.’.php';
$isfileto = is_file($to);
if($CFG[‘template_refresh’] || !$isfileto) {
if($dir) $dir = $dir.’/';
$from = DT_ROOT.’/template/’.$CFG[‘template’].’/’.$dir.$template.’.htm';
if($CFG[‘template’] != ‘default’ && !is_file($from)) {
$from = DT_ROOT.’/template/default/’.$dir.$template.’.htm';
}
if(!$isfileto || filemtime($from) > filemtime($to) || (filesize($to) == 0 && filesize($from) > 0)) {
require_once DT_ROOT.’/include/template.func.php';
template_compile($from, $to);
}
}
return $to;
}
复制代码
将其中
if(!$isfileto || filemtime($from) > filemtime($to) || (filesize($to) == 0 && filesize($from) > 0))
复制代码
修改为
if(1)
复制代码