下載最新的Smarty:http://smarty.php.net/
當前最新版本:2.6.18
解壓後將目錄中的libs目錄重命名為smarty,復制到你的網站目錄,同時在網站根目錄下建立templates和templates_c兩個目錄
建立test.php,內容如下:
<?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權限755
在templates目錄下新建test.html:
<html>
<head>
</head>
<body>
{{$test}}
</body>
</html>
打開test.php,如果看到OK就說明你的smarty安裝成功了!