thinkphp5 给CSS JS 添加版本号

 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  

 

  

posted @ 2018-04-20 16:39  江哥哥  阅读(773)  评论(0编辑  收藏  举报