本文实例讲述了Smarty模板简单配置与使用方法。分享给大家供大家参考,具体如下:
在Smarty目录中建立templates,templates_c,configs,cache目录。以便Smarty进行编译和缓存。
建立smarty_inc.PHP文件对smarty进行配置如下:
PHP;">
caching=false; //开发是不建议开启缓存
$smarty->template_dir="./templates"; //设置模板目录
$smarty->compile_dir="./templates_c"; //设置编译目录
$smarty->cache_dir="./cache"; //缓存文件夹
$smarty->cache_lifetime=60;
$smarty->left_delimiter = "<{"; //左定界符
$smarty->right_delimiter = "}>"; //右定界符
?>
PHP;">
assign("name",$val);
$smarty->display("index.html");
?>
在templates下建立index.html模板: