您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > PHP >

Smarty快速入门之二

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 15:37 点击:

为了以后更方便的使用smarty,我们可以将“加载Smarty 模版引擎”、“建立 Smarty 对象”、“设定Smarty 对象的参数”这三步放到一个公共的php文件内,以后在需要使用的地方我们直接reuqire一下,即可,例如:

1. 建立一个main.php

<?php
include smarty/Smarty.class.php;
//下次程序移植时只需要修改ROOT指向位置即可~
const DIR_SEP = DIRECTORY_SEPARATOR;
define(ROOT, D:.DIR_SEP._PHP_Test.DIR_SEP.Test2.DIR_SEP); $tpl = new Smarty();
$tpl->template_dir = ROOT.templates.DIR_SEP;
$tpl->complie_dir = ROOT.templates_c.DIR_SEP;
$tpl->config_dir = ROOT.configs.DIR_SEP;
$tpl->cache_dir  = ROOT.cache.DIR_SEP;
$tpl->left_delimiter = <{;
$tpl->right_delimiter = }>;
?> 

注1:此处为何要使用DIRECTORY_SEPARATOR?(点击查看)

注2:left_delimiter和right_delimiter为左右结束符变量,此处可定义为其他字符串(默认为{})。

2. 在templates下,新建立一个test.htm

 <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><{$title}></title>
</head>
<body>
 <{$content}>
</body>
</html>

3. 调用模板页给title和content填充内容,新建一个test_smarty_1.php

<?php
require main.php;
$tpl->assign(title, New Message);
$tpl->assign(content, This is test smarty!);
$tpl->display(test.htm);
?>

也可以这样写

<?php
require main.php;
$tpl->assign(array(title=>NewMessage, content=>This is test smarty!));
$tpl->display(test.htm);
?>

输出结果:

页面title显示:NewMessage

页面内容显示:This is test smarty!

 

    相关新闻>>

    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • PHP测试
    • 十天学会php之第六天
    • 几种显示数据的方法的比较
    • 使用xmlhttp为网站增加域名查询功能
    • PHP+MYSQL+Javascript数据库查询结果的动态显示
    • 查找数组中指定键名的值
    • 用redis实现跨服务器session
    • 用新浪微博接口发送图片微博失败的原因
    • smarty局部缓存技术[源码分析]
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1