摘要:1. 简单例子 有助回忆基本知识点 1 define("DIR",dirname(__FILE__)); 2 require_once(DIR."/libs/Smarty.class.php");//引用smarty相对路径 3 4 $smarty = new Smarty(); 5 $smarty->template_dir(DIR."/templates");//模板路径 6 $smarty->complie_dir(DIR."/templates_c");//编译模板的路径 7 $smarty-&
阅读全文