刚刚看视频是这样配置,难道现在也是这样吗
<?php $smarty->left_delimiter = "{";//左定界符 $smarty->right_delimiter = "}";//右定界符 $smarty->temple_dir = "tpl"; //HTML模版 $smarty->compile_dir = "template_c";//模版编译生成的文件 $smarty->cache_dir = "cache";//缓存 $smarty->caching = true; //开启缓存 $smarty->cache_lifetime = 120;//缓存时间 ?>
KevenHuang