//載入核心文件php
include "./libs/Smarty.class.php";html
$smarty = new Smarty();緩存
//模版目錄htm
$smarty->template_dir = "template";it
//模版目錄class
$smarty->compile_dir = "temp/compile";配置
//配置文件im
$smarty->config_dir = "temp/config";smarty
//緩存配置文件
$smarty->cache_dir = "temp/cache";
//開始定界符
$smarty->left_delimiter = "{";
//結束定界符
$smarty->right_delimiter = "}";
var_dump($smarty); //模版載入 $smarty->display('index.html');