目录结构如下: smarty_pro1
---libs
---config
---templates (这里放了个,index.tpl)
---templates_c
---cache
index.php
index.php 里的内容为
template_dir= smarty_path.'templates/';
$smarty->compile_dir= smarty_path.'templates_c/';
$smarty->config_dir= smarty_path.'configs/';
$smarty->cache_dir= smarty_path.'cache/';
$smarty->left_delimiter='{';
$smarty->right_delimiter='}';
$smarty->assign('title','测试一下');
$smarty->assign('content','内容');
$smarty->display('index.tpl');
?>
index.tpl内容为
{ $title }
{ $content }
涓轰
