template_dir = BASE_PATH.SMARTY_PATH.'templates/'; $smarty->compile_dir = BASE_PATH.SMARTY_PATH.'templates_c/'; $smarty->config_dir = BASE_PATH.SMARTY_PATH.'configs/'; $smarty->cache_dir = BASE_PATH.SMARTY_PATH.'cache/'; $smarty->left_delimiter = '{%'; $smarty->right_delimiter = '%}'; /* 使用Smarty赋值方法将一对儿名称/方法发送到模板中 */ $smarty->assign('title','第一个Smarty程序'); $smarty->assign('content','Hello,Welcome to study \'Smarty\'!'); /* 显示模板 */ $smarty->display('01/index.tpl'); ?> 01/index.tpl文件: