PHP Smarty 模板下载地址:
当前版本: Smarty-3.1.15
下载以后,解压到你的服务器目录下,拷贝libs文件夹,并且在同以目录下面创建 templates,templates_c,cache三个文件夹。
并且创建 main.php文件,代码如下:
1 setTemplateDir("./templates"); //设置模板目录 6 $tpl->setCompileDir("./templates_c"); //设置编译目录 7 $tpl->setCacheDir("./cache"); //缓存目录 8 $tpl->cache_lifetime = 0; //缓存时间 9 $tpl->caching = true; //缓存方式 10 11 $tpl->left_delimiter = "<{"; 12 $tpl->right_delimiter = "}>"; 13 ?>
这样配置Smarty就完成了,下面我们创建个例子看看
1、创建test.php文件,代码如下:
1 tpl = $tpl; 8 } 9 10 function __destruct() {11 unset($this->tpl);12 }13 14 public function main(){15 $smarty = $this->tpl;16 $smarty->assign("title","测试");17 $smarty->assign("hello","Hello World!");18 $smarty->display("index.tpl"); 19 }20 }21 $obj2 = new index($tpl);22 $obj2->main();23 ?>
2、在templates文件夹下创建 index.tpl 文件,代码如下:
1 2 3 4 5<{$title}> 6 7 8 9 <{$hello}>10 11
到这里,整个Smarty就配置完成了!