template.php 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. use think\facade\Config;
  15. use think\facade\Request;
  16. return [
  17. // 去除HTML空格换行
  18. 'strip_space' => true,
  19. // 开启模板编译缓存
  20. 'tpl_cache' => !Config::get('app_debug'),
  21. // 定义模板替换字符串
  22. 'tpl_replace_string' => [
  23. '__APP__' => rtrim(url('@'), '\\/'),
  24. '__ROOT__' => rtrim(dirname(Request::basefile()), '\\/'),
  25. '__FULL__' => rtrim(dirname(Request::basefile(true)), '\\/'),
  26. ],
  27. ];