随笔分类 - smarty
摘要:smarty:<?php//引入Smarty类文件include_once("Smarty/Smarty.class.php");//实例化Smarty类$smarty = new Smarty();$smarty->caching=false;//定义模版目录$smarty->template_dir = "./templates";//定义编译目录$smarty->compile_dir = "./templates_c";//定义缓存目录$smarty->cache_dir = "./sm
阅读全文
摘要:smarty官网http://www.smarty.net/download下载最新版本的压缩包。然后解压。只需要其中的libs文件夹。放到自己的网站目录中。可以把libs任意重命名。此处我命名为Smarty。smarty目录结构:smarty配置(Smarty_conf.php):<?php//引入Smarty类文件include_once("Smarty/Smarty.class.php");//实例化Smarty类$smarty = new Smarty();$smarty->caching=false;//定义模版目录$smarty->templa
阅读全文