在functions.php 增加函数
/**
* 获取文件最后修改时间
* 用于更新静态文件版本号
*/
function V($file_path){
/*$file_path = ltrim($file_path,'<?php echo __RES__; ?>');去掉__RES__*/
if( file_exists(RES.$file_path) ) {
$newVer = filemtime( RES.$file_path );
}
$ver = $newVer ? : 1;
return __RES__.$file_path .'?v=' . $ver;
}
在模板文件中使用
<script type="text/javascript" src="<{:V('/js/list.js')}>"></script>