简单的smarty安装配置笔记

时间:2021-01-02 08:01:16

备注:
1.首先安装的前提是你的机器上已经安装好了apache和php
2.本次是将smarty安装在根目录下的,所以一切一根目录为准,如需要改变安装目录,注意底下相应路径的更改

准备:

先下载一个smarty安装包!

点击此处下载smarty安装包

安装步骤:

1.将smarty解压根目录下;

2.在根目录下新建以下文件夹:
templates
templates_c
configs
cache

3.将以下定义写成一个PHP页,我给他命名smarty_c.php
<?php
include("smarty/libs/Smarty.class.php");  //注意路径
$smarty=new smarty();
$smarty->template_dir='templates';   //定义模板文件夹
$smarty->compile_dir='templates_c';  //定义模板生成文件夹
$smarty->cache_dir='cache';     //定义缓存文件夹
$smarty->config_dir='configs';  //定义配置文件
$smarty->left_delimiter='<{';   //左中置符
$smarty->right_delimiter='}>';  //右中置符
?>

4.上面就已经配置好了,下面开始写网页:
test.php  //这个放在根目录就可以了
<?php
include("smarty_c.php");
$test="hello world!this is smarty test!";
$smarty->assign("test",$test);
$smarty->display('test.htm');
?>
test.htm  //这个放到templates文件夹下
<html>
<body>
<{$test}>
</body>
</html>

5.然后用http://localhost/test.php访问就可以看到效果了!^_^