smarty安装
define(ROOT, dirname(__FILE__).DIRECTORY_SEPARATOR); include ROOT."libs/Smarty.class.php"; $tpl=new Smarty; $tpl->template_dir=ROOT."tpl/"; //模板文件 $tpl->compile_dir=ROOT."com"; //生成编译后的文件 $tpl->config_dir=ROOT."configs"; //配置文件 $tpl->left_delimiter="<{"; //左定界符 $tpl->right_delimiter="}>";//右定界符 $tpl->debugging = true;//开启调试 $tpl->error_reporting = E_ALL;//模板中错误报告级别 $tpl->assign('var', 'var'); //$var $tpl->display('tpl_name.tpl');