怎样配置smarty,让smarty输出变量_网络编程_奇迪科技(深圳)有限公司(www.qvdv.net)

欢迎来到奇迪科技(深圳)有限公司,超值服务提供卓越产品!

网络编程

怎样配置smarty,让smarty输出变量

作者:qvdv 来源: 更新时间:2015-02-02

smarty的应用很盛行,这里就讲述一下如何如何配置安装smarty?怎样配置smarty,让其输出变量。

1.先下载最新版的smarty。解压下来了的文件后,我们会发现里面有个libs文件夹,我们把这个文件放在自己的项目中,这里重新名为为“smarty”(可以根据自己的意愿命名)。

2.分别在项目的根目录下新建文件夹“templates”和“templates_compile”(可以自由命名),另外在项目中引入smarty的类文件,如下:新建一个index.php文件在根目录,输入以下内容

//Smarty配置
require('../smarty/Smarty.class.php') ;
$smarty = new Smarty();//实例化
$smarty -> template_dir = "../templates"; //模板存放目录 
$smarty -> compile_dir = "../templates_compile"; //编译目录 
$smarty -> left_delimiter = "{"; //左定界符 
$smarty -> right_delimiter = "}"; //右定界符
$myTest='测试';//自定义测试变量
$smarty->assign("myTest",$myTest);
$smarty->display('../templates/index.html');
3.在模板存放目录 “templates”下新建一个模板文件,例如“index.html”,内容如下:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>这是测试的模板文件</title>
</head>
<body>
{$myTest}
</body>
</html>

在完成上面三大步骤后,我们只要在浏览器浏览项目下的index.php文件,就能够看出浏览器中输出“测试”。这就说明已经成功输出我们定义的变量,smarty配置、安装成功了!





本文版权所有,转载须注明:来源  https://www.qvdv.net/qvdv-oop-767.html