thinkphp 模版 静态缓存

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

/*模版缓存*/
'HTML_CACHE_ON'     => true, // 开启静态缓存
'HTML_FILE_SUFFIX'  => '.html', // 设置静态缓存文件后缀
'HTML_CACHE_RULES'  => array(  // 定义静态缓存规则
    'index:index' => array('index', '120','md5'),
),

[/pcsh]

其中定义HTML_CACHE_RULES中数组的含义是

index:index 为当前模块index控制器中的index操作(方法)

array('index', '120','md5'), 为文件名的命名规则 数字是时间 0表示永久缓存

参考文献

http://document.thinkphp.cn/manual_3_2.html#html_cache

 

此处评论已关闭