1、打開擴展標簽專屬文件 \apps\home\controller\ExtLabelController.php 添加以下語句 use core\basic\Config;
在$this->test();下方增加 $this->smartVersion();
新增對應標簽函數smartVersion()和auto_version方法 //靜態文件尾巴增加時間版本號標簽 private function smartVersion(){ $pattern = '/\{ver\s?\(\{([^\}]+)\}\/([^\}]+)\)\}/'; if (preg_match($pattern, $this->content, $matches)) { $this->content = preg_replace_callback($pattern,function($matches){ if($matches){ return $this->auto_version(APP_THEME_DIR.'/'.$matches[2]); } },$this->content); } } // 自動更新時間版本號 public function auto_version($url){ $ver = filemtime($_SERVER['DOCUMENT_ROOT'].$url); return $url.'?v='.date("YmdHis",$ver); }
2、修改原有調用樣式或JS的標簽,只要是靜態文件的均可添加,規則{ver(xxxxxx)} 原來的 {pboot:sitetplpath}/skin/css/style.css) {pboot:sitetplpath}/skin/js/cms.js
修改為 {ver({pboot:sitetplpath}/skin/css/style.css)} {ver({pboot:sitetplpath}/skin/js/cms.js)}
|