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."?t>);
13 }
14 
15 
16 
17 3.在模板文件中如下使用:
18 
19 <link type="text/css" rel="stylesheet" href="{:stamp('css/list.css')}"/>
20  

 

  

相关文章:

  • 2022-02-08
  • 2022-12-23
  • 2021-05-16
  • 2022-12-23
  • 2021-10-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-24
  • 2021-06-16
相关资源
相似解决方案