smarty 645 B

1234567891011121314151617
  1. <?php
  2. define('SITE_ROOT', str_replace('\\', '/', __DIR__));
  3. defined('DATA_PATH') or define('DATA_PATH', SITE_ROOT . 'Cache/Smarty/data');
  4. $smarty = new \Smarty;
  5. $smarty->setTemplateDir(SITE_ROOT . '/views/'); //设置模板目录
  6. $smarty->setCompileDir(SITE_ROOT . '/data/cache/templates_c/');
  7. $smarty->setConfigDir(SITE_ROOT . '/views/smarty_configs/');
  8. $smarty->setCacheDir(SITE_ROOT . '/data/cache/smarty_cache/');
  9. if (APP_DEBUG) {
  10. //$smarty->debugging = true;
  11. $smarty->caching = false;
  12. $smarty->cache_lifetime = 0;
  13. } else {
  14. //$smarty->debugging = false;
  15. $smarty->caching = true;
  16. $smarty->cache_lifetime = 120;
  17. }