首頁 >後端開發 >php教程 >smarty模板 smarty模板的基礎搭建

smarty模板 smarty模板的基礎搭建

WBOY
WBOY原創
2016-07-28 08:25:291116瀏覽

1、下載smarty模板,官方即有

2、解壓縮即可、你會得這樣的目錄

 smarty模板的基础搭建

除了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 />




陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn