1. 下载Smarty最新版: http://www.smarty.net/download
2. libs目录下的文件都是Smarty需要的库文件,只要将该文件夹拷贝到要使用Smarty技术的网站根目录就能够使用Smarty了。为了不和已有的文件夹重名,可以修改文件夹的名字为Smarty。
3.在网站根目录下建立如下的目录结构 来测试Smarty的使用。
----Smarty-learn
--------------------smarty(smarty的库文件)
--------------------templates---cache
------------------------------------config
------------------------------------templates--------index.html(模版文件)
------------------------------------templates_c
--------------------index.php
index.html 的内容:
<html>
<title><head>test smarty</head></title>
<body>
{$color}
</body>
</html>
index.php的内容:
<?PHP
//引用类文件?
require 'smarty/Smarty.class.php';
$smarty = new Smarty;
//设置各个目录的路径