Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

html.php 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. // 全局变量数组
  14. $global = config('tpcache');
  15. empty($global) && $global = tpCache('global');
  16. // 系统模式
  17. $web_cmsmode = isset($global['web_cmsmode']) ? $global['web_cmsmode'] : 2;
  18. /*页面缓存有效期*/
  19. $app_debug = true;
  20. if (1 == $web_cmsmode) { // 运营模式
  21. $app_debug = false;
  22. }
  23. /*--end*/
  24. return array(
  25. // 应用调试模式
  26. 'app_debug' => $app_debug,
  27. // 模板设置
  28. 'template' => array(
  29. // 模板路径
  30. 'view_path' => './template/',
  31. // 模板后缀
  32. 'view_suffix' => 'htm',
  33. // 模板引擎禁用函数
  34. 'tpl_deny_func_list' => config('global.tpl_deny_func_list'),
  35. // 默认模板引擎是否禁用PHP原生代码 苦恼啊! 鉴于百度统计使用原生php,这里暂时无法开启
  36. 'tpl_deny_php' => false,
  37. ),
  38. // 视图输出字符串内容替换
  39. 'view_replace_str' => array(
  40. '__EVAL__' => '', // 过滤模板里的eval函数,防止被注入
  41. ),
  42. );
  43. ?>