環境:
smarty
1.在http://www.smarty.net/download下載最新smarty包,window選擇zips,linux下選擇tar.gz。以windows為例,下載後解壓,如f:\smarty。
2.把解壓出來的smarty目錄裡lib目錄拷貝到test裡,重命名為smarty。在test目錄下,創建tpls目錄,在tpls目錄下,創建templates、templates_c、configs、cache目錄,這幾個目錄分別是模板目錄(必要),解析目錄(必要),配置目錄(可選),緩存目錄(可選),
smarty的php代碼和這四個目錄是同一個級的,html代碼放在templates下。
目錄樹如下
代碼部分:
1.在test/smarty下創建utf-8無bom格式的main.php,配置smarty的一些成員屬性。
1 <?php 2 include("Smarty.class.php"); 3 define('SMARTY_ROOT', '../tpls'); 4 $tpl = new Smarty(); 5 $tpl->template_dir = SMARTY_ROOT."/templates/";//設置模板文件的存放目錄 6 $tpl->compile_dir = SMARTY_ROOT."/templates_c/";//設置編譯文件的存放目錄 7 $tpl->config_dir = SMARTY_ROOT."/configs/";//設置配置文件的存放目錄 8 $tpl->cache_dir = SMARTY_ROOT."/cache/";//設置緩存文件的存放目錄 9 $tpl->caching=1;//開啟緩存 10 $tpl->cache_lifetime=60*60*24;//有效時間為一天 11 $tpl->left_delimiter = '[';//smarty語言的左右結束符 12 $tpl->right_delimiter = ']'; 13 ?>
我們知道大括號是smarty的默認定界符,但在和javascript、css等結合時可能會產生沖突,所以這裡我們設定為[和]。
2.在test/tpls/templates下面新建html.tpl模板文件,就是在html中加入smarty變量。改模板相當於表現層。
html.tpl的代碼如下:
1 <html> 2 <head> 3 <meta http-equiv="Content-type" content="text/html; charset=utf-8"> 4 <title> 5 [$title] 6 </title> 7 </head> 8 <body> 9 [$content] 10 </body> 11 </html>
3.在test目錄下創建smarty.php,該文件相當於驅動層,給上面表現層的變量賦好值,然後顯示出來。
smarty.php的代碼如下:
1 <?php 2 include("smarty/main.php"); 3 $tpl->assign("title","遲到"); 4 $tpl->assign("content","罰款500元!"); 5 $tpl->display("tpls/templates/html.tpl"); 6 ?>
4.在浏覽器中運行smarty.php即可。