1 1.在/public/index.php中定义APP_STATIC路径:
2
3 define('APP_STATIC',__DIR__.'/../public/static/');
4
5
6
7
8 2.在/application/common.php中定义时间戳函数:
9
10 function stamp($file){
11 $path=APP_STATIC.$file;
12 return "/static/".$file."?tid=".filemtime($path);
13 }
14
15
16
17 3.在模板文件中如下使用:
18
19 <link type="text/css" rel="stylesheet" href="{:stamp('css/list.css')}"/>
20
来源:oschina
链接:https://my.oschina.net/u/4379890/blog/4000831