iwebshop 自动给css js链接加版本信息

lib/core/tag_class.php

case 'theme:':
$path = $matches[4];
$exts = strtolower(substr($matches[4], strrpos($matches[4], '.')+1));
if($exts == 'js' || $exts == 'css') {
$path .= '?v='. IWeb::$app->config['revision'];
}
return '<?php echo $this->getWebViewPath()."'.$path.'";?>';

原文地址:https://www.cnblogs.com/Dong-Ge/p/7324064.html