1、下載smarty模板,官方即有
2、解壓縮即可、你會得這樣的目錄
除了libs資料夾其餘都可以刪掉(不知道有啥用)。
3、在目前目錄下分別建立templates、templates_c、cache、config的資料夾,別的名字也可以,但要修改設定檔
4、在根目錄下建立個資料夾叫啥都行,建立php文件,將下列程式碼黏入其中。
require_once("libs/smarty.class.php");
$smarty=new smarty();
$smarty->template_dir="templates";//指定範本檔案的路徑
$smarty->compile_dir="templates_c";//指定編譯的檔案路徑
$smarty->cache_dir="cache";//指定快取檔案路徑
$smarty->c c />