## 模板輸出替換
支持對模板文件輸出的內容進行字符替換,定義后在渲染模板或者內容輸出的時候就會自動根據設置的替換規則自動替換。
如果需要全局替換的話,可以直接在`template.php`配置文件中添加:
~~~
'tpl_replace_string' => array(
'__LIB__' => '/theme/index/lib',
'__IMG__' => '/theme/index/img',
'__CSS__' => '/theme/index/css',
'__JS__' => '/theme/index/js',
'__TPL__' => '/template/',
)
~~~
> 替換規則嚴格區分大小寫