thinkphp5 给CSS JS 添加版本号

只愿长相守 提交于 2020-12-01 02:11:35
 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

 

  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!