include 'libs/Smarty/Smarty.class.php';
$smarty=new Smarty();
// 左定界符
$smarty->left_delimiter='{';
// 右定界符
$smarty->right_delimiter='}';
// 模板目录
$smarty->template_dir='tpl';
// 编译文件目录
$smarty->compile_dir='template';
// 缓存目录
$smarty->cache_dir='cache';
// 开启缓存
$smarty->caching=true;
// 缓存时长
$smarty->cache_lifetime=3600;
$smarty->assign('title','this is a title');
$smarty->display('index.tpl');