view.php 686 B

1234567891011121314151617181920
  1. <?php
  2. return [
  3. 'default' => 'smarty',
  4. 'engines' => [
  5. 'smarty' => [
  6. 'class' => \Hyperf\Smarty\Engine::class,
  7. 'option' => [
  8. 'template_dir' => BASE_PATH . '/storage/view',
  9. 'compile_dir' => BASE_PATH . '/runtime/smarty/compile',
  10. 'cache_dir' => BASE_PATH . '/runtime/smarty/cache',
  11. 'left_delimiter' => '{',
  12. 'right_delimiter' => '}',
  13. 'caching' => false, // 是否开启缓存,可根据实际情况调整
  14. 'compile_check' => true,
  15. 'force_compile' => true, // 开发时强制重新编译
  16. ],
  17. ],
  18. ],
  19. ];