欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

destoon 每修改一次模板就要更新缓存,关闭缓存大绝招

打开 /include/global.func.php 文件

找到 template 函数,即以下代码

  1. function template($template = ‘index’, $dir = ”) {

  2.         global $CFG;

  3.         $to = $dir ? DT_CACHE.’/tpl/’.$dir.’-‘.$template.’.php’ : DT_CACHE.’/tpl/’.$template.’.php';

  4.         $isfileto = is_file($to);

  5.         if($CFG[‘template_refresh’] || !$isfileto) {

  6.                 if($dir) $dir = $dir.’/';

  7.         $from = DT_ROOT.’/template/’.$CFG[‘template’].’/’.$dir.$template.’.htm';

  8.                 if($CFG[‘template’] != ‘default’ && !is_file($from)) {

  9.                         $from = DT_ROOT.’/template/default/’.$dir.$template.’.htm';

  10.                 }

  11.         if(!$isfileto || filemtime($from) > filemtime($to) || (filesize($to) == 0 && filesize($from) > 0)) {

  12.                         require_once DT_ROOT.’/include/template.func.php';

  13.                         template_compile($from, $to);

  14.                 }

  15.         }

  16.         return $to;

  17. }

复制代码

将其中

  1. if(!$isfileto || filemtime($from) > filemtime($to) || (filesize($to) == 0 && filesize($from) > 0))

复制代码

修改为

  1. if(1)

复制代码


来自  http://iliandong.cn/620.html

普通分类: