下載最新的Smarty:http://smarty.php.net/php
解壓後將目錄中的libs目錄重命名爲smarty,複製到你的網站目錄,同時在網站根目錄下創建templates和templates_c兩個目錄 創建test.php,內容以下:html
<?php
include_once('./Smarty/Smarty.class.php');
$smarty = new Smarty();
$smarty -> template_dir = "./templates"; //模板存放目錄
$smarty -> compile_dir = "./templates_c"; //編譯目錄
$smarty -> left_delimiter = "{{"; //左定界符
$smarty -> right_delimiter = "}}"; //右定界符
$smarty -> assign('test','OK');
$smarty -> display('test.html');
?>
給templates_c權限網站
在templates目錄下新建test.html:spa
<html> <head> </head> <body> {{$test}} </body> </html>
打開test.php,若是看到OK就說明你的smarty安裝成功了!.net
詳細出處參考:http://www.jb51.net/article/14132.htmcode