吃的三碗面
2015-03-01 18:37
<?php define('SMARTY_DIR', 'E:wamp/www/SmartyTest/smarty/'); require_once (SMARTY_DIR.'Smarty.class.php'); $smarty=new Smarty(); //指定HTML模板的地址 $smarty->setTemplateDir('./templates/'); //编译后文件存放的地址 $smarty->setCompileDir('./templates_c/'); //指定配置地址 $smarty->setConfigDir('./configs/'); //是否开启缓存 $smarty->caching=FALSE; //指定缓存的地址 $smarty->setCacheDir('./cache/'); //指定缓存的时间 $smarty->cache_lifetime= 60; //定义左右定界符 $smarty->left_delimiter = "{"; $smarty->right_delimiter= "}";
挺好的。
MVC架构模式分析与设计
82396 学习 · 929 问题
相似问题