smarty实例教程

  • 一、什么是smarty?

smarty是一个使用PHP写出来的模板PHP模板引擎,它提供了逻辑与外在内容的分离,简单的讲,目的就是要使用PHP程序员同美工分离,使用的程序员改变程序的逻辑内容不会影响到美工的页面设计,美工重新修改页面不会影响到程序的程序逻辑,这在多人合作的项目
中显的尤为重要。

二、smarty优点:
1. 速度:采用smarty编写的程序可以获得最大速度的提高,这一点是相对于其它的模板引擎技术而言的。

2. 编译型:采用smarty编写的程序在运行时要编译成一个非模板技术的PHP文件,这个文件采用了PHP与HTML混合的方式,在下一次访问模板时将WEB请求直接转换到这个文件中,而不再进行模板重新编译(在源程序没有改动的情况下) 

3. 缓存技术:smarty选用的一种缓存技术,它可以将用户最终看到的HTML文件缓存成一个静态的HTML页,当设定smarty的cache属性为true时,在smarty设定的cachetime期内将用户的WEB请求直接转换到这个静态的HTML文件中来,这相当于调用一个静态的HTML文件。

4. 插件技术:smarty可以自定义插件。插件实际就是一些自定义的函数。

5. 模板中可以使用if/elseif/else/endif。在模板文件使用判断语句可以非常方便的对模板进行格式重排。


三、不适合使用smarty的地方:

1. 需要实时更新的内容。例如像股票显示,它需要经常对数据进行更新,这类型的程序使用smarty会使模板处理速度变慢。

2. 小项目。小项目因为项目简单而美工与程序员兼于一人的项目,使用smarty会丧失php开发迅速的优点。

四、安装smarty类:

安装smarty的环境:php版本4.06以上版本。

安装smarty方法非常简单,从http://samrty.php.net中下载smarty.将Libs中所有文件
拷入comm目录,完成基本安装.

其它高级安装使用方法请看手册.

五、smarty在模板中的使用:

本节通过几个实例来讲一讲smarty的使用。smarty模板通常使用.tpl来标识,有些人为了美工方便,将扩展名直接写成.html,也是可以的。本文中采用smarty标准写法:以.tpl来表示为一个smarty模板。

PHP代码:--------------------------------------------------------------------------------

实例1:

先来看一个简单的例子。
=====================================================
index.tpl
=====================================================


{* 显示是smarty变量识符里的用*包含的文字为注释内容 *} 
{include 
file="header.tpl"}{*页面头*} 
大家好,我叫{$name}, 欢迎大家阅读我的smarty学习材料。 
{include file="foot.tpl"}{*页面尾*}


上边的这个例子是一个tpl模板,其中:
1. {**}是模板页的注释,它在smarty对模板进行解析时不进行任何输出,仅供模板设计师对模板进行注释。
2.include file="xxx.tpl" 使用此句将一个模板文件包含到当前页面中,例子中将在网站中公用事的head.tpl与foot.tpl进行了包含,你可以
这样想,使用这一句将xxx.tpl中的内容全部复制在当前语句处。当然,你不使用这一句也可以,将XXX.tpl中的内容复制到当前语句处
也是完全可以了。

3.{$name}: 模板变量,smarty中的核心组成,采用smarty定义的左边界符{与右边界符}包含着、以PHP变量形式给出,在smarty程序中将使用
$smarty->assign("name", "李晓军");将模板中的$name替换成“李晓军”三个字。

整个实例源程序如下:
=============================
header.tpl
=============================

<html
<
head
<
title>大师兄smarty教程title
head
<
body>


===============================
foot.tpl
===============================

<hr
<
centerCopyRight&#169; by 大师兄 2004年8月 Email: [email protected]  
<hr
body
html>


=====================================================
index.tpl
=====================================================

{* 显示是smarty变量识符里的用*包含的文字为注释内容 *} 
{include 
file="header.tpl"}{*页面头*} 
大家好,我叫{$name}, 欢迎大家阅读我的smarty学习材料。 
{include file="foot.tpl"}{*页面尾*}


================================================
index.php
================================================
/********************************************* 

* 文件名: index.php 
* 作 用: 显示实例程序 

* 作 者: 大师兄 
* Email: [email protected] 

*********************************************/ 
include_once("./comm/Smarty.class.php"); //包含smarty类文件 

$smarty = new Smarty(); //建立smarty实例对象$smarty 
$smarty->template_dir "./templates";//设置模板目录 
$smarty->compile_dir "./templates_c"//设置编译目录 

//---------------------------------------------------- 
//左右边界符,默认为{},但实际应用当中容易与JavaScript 
//相冲突,所以建议设成<{}>或其它。 
//---------------------------------------------------- 
$smarty->left_delimiter "{";  
$smarty->right_delimiter "}"

$smarty->assign("name""李晓军"); //进行模板变量替换 

//编译并显示位于./templates下的index.tpl模板 
$smarty->display("index.tpl");  
?>  
最终执行这个程序时将显示为: 
================================ 
执行index.php 
================================ 
 
 
大师兄smarty教程 
 
 
大家好,我叫李晓军, 欢迎大家阅读我的smarty学习材料。 

 
 CopyRight© by 大师兄 2004年8月 Email: [email protected] 
 

 
 


实例2:
这个例子是综合使用smarty模板参数的一个例子,这些参数用来控制模板的输出,我只选其中几个,其它的参数你去看参考吧。

================================================
example2.tpl
================================================

<html
<
head><title>大师兄smarty示例2title>head
<
body
1. 第一句首字母要大写:{$str1|capitalize}<br
2. 第二句模板变量 李晓军:{$str2|cat:"李晓军"}<br
3. 第三句输出当前日期:{$str3|date_format:"%Y年%m月%d日"}<br
4. 第四句.php程序中不处理,它显示默认值:{$str4|default:"没有值!"}<br
5。第五句要让它缩进8个空白字母位,并使用"*"取替这8个空白字符:<br
{
$str5|indent:8:"*"}}<br
6. 第六句把TEACHerLI@163.com全部变为小写:{$str6|lower}<br
7. 第七句把变量中的teacherli替换成:李晓军:{$str7|replace:"teacherli":"李晓军"}<br
8. 第八句为组合使用变量修改器:{$str8|capitalize|cat:"这里是新加的时间:"|date_format:"%Y年%m月%d日"|lower
body
html>


===============================================
example2 .php
===============================================
/********************************************* 

* 文件名: example2.php 
* 作 用: 显示实例程序2 

* 作 者: 大师兄 
* Email: [email protected] 

*********************************************/ 
include_once("./comm/Smarty.class.php"); //包含smarty类文件 

$smarty = new Smarty(); //建立smarty实例对象$smarty 
$smarty->template_dir "./templates";//设置模板目录 
$smarty->compile_dir "./templates_c"//设置编译目录 

//---------------------------------------------------- 
//左右边界符,默认为{},但实际应用当中容易与JavaScript 
//相冲突,所以建议设成<{}>或其它。 
//---------------------------------------------------- 
$smarty->left_delimiter "{";  
$smarty->right_delimiter "}"

$smarty->assign("str1""my name is xiao jun, li."); //将str1替换成My Name Is Xiao Jun, Li. 
$smarty->assign("str2""我的名字叫:"); //输出: 我的名字叫:李晓军 
$smarty->assign("str3""公元"); //输出公元2004年8月21日(我的当前时间) 
//$smarty->assign("str4", ""); //第四句不处理时会显示默认值,如果使用前面这一句则替换为"" 
$smarty->assign("str5""前边8个*"); //第五句输出:********前边8个* 
$smarty->assign("str6""[email protected]"); //这里将输出[email protected] 
$smarty->assign("str7""this is teacherli"); //在模板中显示为:this is 李晓军 
$smarty->assign("str8""HERE IS COMBINING:"); 

//编译并显示位于./templates下的index.tpl模板 
$smarty->display("example2.tpl");  
?>


最终输出效果:
======================================================
example2.php输出效果:
======================================================

<html
<
head><title>大师兄smarty示例2title>head
<
body
1. 第一句首字母要大写:My Name Is Xiao JunLi.<br
2. 第二句模板变量 李晓军:我的名字叫:李晓军<br
3. 第三句输出当前日期:公元2004年8月21日<br
4. 第四句.php程序中不处理,它显示默认值:没有值!<br
5。第五句要让它缩进8个空白字母位,并使用"*"取替这8个空白字符:<br
********
前边8个*<br
6. 第六句把TEACHerLI@163.com全部变为小写:teacherli@163.com<br
7. 第七句把变量中的teacherli替换成:李晓军:this is 李晓军<br
8. 第八句为组合使用变量修改器:Here is Combining:这里是新加的时间:2004年8月21日 
body
html>


在模板中的这些参数被称为变量修改器(variable modifiers),使用这些参数可对模板进行一系列的修改控制。变量修改器
使用"|"和调节器名称应用修改器, 使用":"分开修改器参数。变量修改器可以组合使用,像第八句一样,实际使用中可以灵活应用。



实例3.
==================================================
example3.tpl
==================================================

<html
<
head><title>模板中内定的一些函数title>head
<
body

{*
下面的这一段相当于在模板内部定义一个变量UserName*} 
{
assign var="UserName" value="大师兄"}  
这里将显示模板内部定义的一个变量:UserName = {$UserName

下面的这一行将显示3个checkBox:<br
{
html_checkboxes name="CheckBox" values=$CheckName checked=$IsChecked output=$value separator=""
下面在这一行将显示3个radio:<br
{
html_radios name="RadioBox" values=$RadioName checked=$IsChecked output=$value separator=""


下面显示一个月,年选择框:<br
{
html_select_date

<
hr><b>CopyRight&#169; By XiaoJun, Li 2004{mailto address="[email protected]" text="联系作者"} 

body
html>


======================================================
example3.php
======================================================
/********************************************* 

* 文件名: example3.php 
* 作 用: 显示实例程序3 

* 作 者: 大师兄 
* Email: [email protected] 

*********************************************/ 

require_once ("./comm/Smarty.class.php"); 

$smarty = new Smarty(); 
$smarty->template_dir './templates/'
$smarty->compile_dir './templates_c/'
$smarty->config_dir './configs/'
$smarty->cache_dir './cache/'
$smarty->caching false

//-------------------------------------------------------------------------------------- 
//处理{html_checkboxes name="CheckBox" values=$CheckName checked=$IsChecked output=$value separator=""} 
//-------------------------------------------------------------------------------------- 
$smarty->assign('CheckName', array( 
1001 => '语文'
1002 => '数学'
1003 => '外语')); 
$smarty->assign('IsChecked'1001); 


//-------------------------------------------------------------------------------------- 
//处理{html_radioes name="RadioBox" values=$RadioName checked=$IsChecked output=$value separator=""} 
//-------------------------------------------------------------------------------------- 
$smarty->assign('RadioName', array( 
1001 => '语文'
1002 => '数学'
1003 => '外语')); 
$smarty->assign('IsChecked'1001); 

//-------------------------------------------------------------------------------------- 
//{html_select_date}不用处理会自动输出 
//-------------------------------------------------------------------------------------- 

$smarty->display("example3.tpl"); 
?>



======================================================
example3.php输出效果:
======================================================

<html
<
head><title>模板中内定的一些函数title>head
<
body

{
assign var="UserName" value="大师兄"}  
这里将显示模板内部定义的一个变量:UserName 大师兄 

下面的这一行将显示3个checkBox
:<br
<
input type="checkbox" name="CheckBox[]" value="1000">语文<br /> 
<
input type="checkbox" name="CheckBox[]" value="1001" checked="checked">数学<br />
<
input type="checkbox" name="CheckBox[]" value="1002">外语<br /> 
下面在这一行将显示3个radio:<br
<
input type="radio" name="RadioBox[]" value="1000">语文<br /> 
<
input type="radio" name="RadioBox[]" value="1001" checked="checked">数学<br /> 
<
input type="radio" name="RadioBox[]" value="1002">外语<br /> 
下面显示一个月,年选择框:<br
<
select name="Date_Month"
<
option label="January" value="01">Januaryoption
<
option label="February" value="02">Februaryoption
<
option label="March" value="03">Marchoption
<
option label="April" value="04">Apriloption
<
option label="May" value="05">Mayoption
<
option label="June" value="06">Juneoption
<
option label="July" value="07">Julyoption
<
option label="August" value="08" selected="selected">Augustoption
<
option label="September" value="09">Septemberoption
<
option label="October" value="10">Octoberoption
<
option label="November" value="11">Novemberoption
<
option label="December" value="12">Decemberoption
select
<
select name="Date_Day"
<
option label="01" value="1">01option
<
option label="02" value="2">02option
<
option label="03" value="3">03option
<
option label="04" value="4">04option
<
option label="05" value="5">05option
<
option label="06" value="6">06option
<
option label="07" value="7">07option
<
option label="08" value="8">08option
<
option label="09" value="9">09option
<
option label="10" value="10">10option
<
option label="11" value="11">11option
<
option label="12" value="12">12option
<
option label="13" value="13">13option
<
option label="14" value="14">14option
<
option label="15" value="15">15option
<
option label="16" value="16">16option
<
option label="17" value="17">17option
<
option label="18" value="18">18option
<
option label="19" value="19">19option
<
option label="20" value="20">20option
<
option label="21" value="21" selected="selected">21option
<
option label="22" value="22">22option
<
option label="23" value="23">23option
<
option label="24" value="24">24option
<
option label="25" value="25">25option
<
option label="26" value="26">26option
<
option label="27" value="27">27option
<
option label="28" value="28">28option
<
option label="29" value="29">29option
<
option label="30" value="30">30option
<
option label="31" value="31">31option
select
<
select name="Date_Year"
<
option label="2004" value="2004" selected="selected">2004option
select
<
hr><b>CopyRight&#169; By XiaoJun, Li 2004ÁªÏµ×÷Õß 
body
html>

例3使用了一些smarty模板中内置的一些函数,相似的函数大家可以在手册中查到,使用方法很简单,大家可以自己去查找.


例4.模板控制(if / elseif / else/ endif )
=======================================================
example4.tpl
=======================================================

<html
<
head><title>模板中的流程控制title><head
<
body
<
table border="1"
{
assign var="tbColor" value="#D4D0C8"
色彩:{$tbColor}<br

{
section name=loop loop=$News
{if 
$tbColor == "#D4D0C8"
<
tr bgcolor="{$tbColor}"
{
assign var="tbColor" value="#EEEEEE"
{else 
$tbColor == "#EEEEEE"
<
tr bgcolor "{$tbColor}"
{
assign var="tbColor" value="#D4D0C8"
{/if} 
<
td>{$News[loop].newsID}td
<
td>{$News[loop].newsTitle}td
<
tr
{/
section
table
body
html>


=======================================================
example4.php
=======================================================
/********************************************* 

* 文件名: example4.php 
* 作 用: 显示实例程序4 

* 作 者: 大师兄 
* Email: [email protected] 

*********************************************/ 

require_once ("./comm/Smarty.class.php"); 

$smarty = new Smarty(); 
$smarty->template_dir './templates/'
$smarty->compile_dir './templates_c/'
$smarty->config_dir './configs/'
$smarty->cache_dir './cache/'
$smarty->caching false

$array[]= array("newsID"=>"001""newsTitle"=>"第1条新闻");  
$array[]= array("newsID"=>"002""newsTitle"=>"第2条新闻"); 
$array[]= array("newsID"=>"003""newsTitle"=>"第3条新闻"); 
$array[]= array("newsID"=>"004""newsTitle"=>"第4条新闻"); 
$array[]= array("newsID"=>"005""newsTitle"=>"第5条新闻"); 
$array[]= array("newsID"=>"006""newsTitle"=>"第6条新闻"); 
$array[]= array("newsID"=>"007""newsTitle"=>"第7条新闻"); 
$array[]= array("newsID"=>"008""newsTitle"=>"第8条新闻"); 


$smarty->assign("News"$array); 

$smarty->display("example4.tpl"); 
?>


==================================================
example4.php输出:
==================================================

<html
<
head><title>模板中的流程控制title><head
<
body
<
table border="1"

<
tr bgcolor="#D4D0C8"

<
td>001td
<
td>第1条新闻td
tr
<
tr bgcolor "#EEEEEE"

<
td>002td
<
td>第2条新闻td
tr
<
tr bgcolor="#D4D0C8"

<
td>003td
<
td>第3条新闻td
tr
<
tr bgcolor "#EEEEEE"

<
td>004td
<
td>第4条新闻td
tr
<
tr bgcolor="#D4D0C8"

<
td>005td
<
td>第5条新闻td
tr
<
tr bgcolor "#EEEEEE"

<
td>006td
<
td>第6条新闻td
tr
<
tr bgcolor="#D4D0C8"

<
td>007td
<
td>第7条新闻td
tr
<
tr bgcolor "#EEEEEE"

<
td>008td
<
td>第8条新闻td
tr
table
body
html>


模板文件中使用:

{if $tbColor == "#D4D0C8"
<
tr bgcolor="{$tbColor}"
{
assign var="tbColor" value="#EEEEEE"
{else 
$tbColor == "#EEEEEE"
<
tr bgcolor "{$tbColor}"
{
assign var="tbColor" value="#D4D0C8"
{/if}

这一语句块进行设置每一行的背景颜色, {assign var="tbColor" value="#D4D0C8"}还记的吧,是例3中设置模板内部变量的定义方法,

使用模板内置的流程控制语句有时可以极大程度上提高程序的控制能力,下面一个例子是phpx.com中曾经有位朋友问过的,我将它作为
实例放在这里供大家学习.
例4我用来说明{if / elseif /else /if}的使用方法,如果单为了实现隔行的目的,大家可以使用这一句就行了:
PHP代码:

-------------------------------------------------------------------------------- 
{
section name=rows loop=$data
<
tr bgcolor="{cycle values="#D4D0C8,#EEEEEE"}"> 
<td>{$data[rows]}td
tr
{/
section
---------------------------------------------------------------------------------




例5: 使用模板内置流程控制语句进行一行多单元格内容输出, 也就是在视觉上smarty每记输出几条记录:
================================================
example5.tpl
================================================

<html
<
head><title>一行输出多条记录title>head
<
body
<
table
<
tr
{
section name=loop loop=$News step=1}  
{if 
$smarty.section.loop.index == 0
tr>  
<
tr
{/if} 
<
td>{$News[loop].newsID}td
<
td>{$News[loop].newsTitle}td
{/
section
tr>  
table
body
html>



====================================================
example5.php
====================================================
/********************************************* 

* 文件名: example5.php 
* 作 用: 显示实例程序5 

* 作 者: 大师兄 
* Email: [email protected] 

*********************************************/ 

require_once ("./comm/Smarty.class.php"); 

$smarty = new Smarty(); 
$smarty->template_dir './templates/'
$smarty->compile_dir './templates_c/'
$smarty->config_dir './configs/'
$smarty->cache_dir './cache/'
$smarty->caching false

$array[]= array("newsID"=>"001""newsTitle"=>"第1条新闻");  
$array[]= array("newsID"=>"002""newsTitle"=>"第2条新闻"); 
$array[]= array("newsID"=>"003""newsTitle"=>"第3条新闻"); 
$array[]= array("newsID"=>"004""newsTitle"=>"第4条新闻"); 
$array[]= array("newsID"=>"005""newsTitle"=>"第5条新闻"); 
$array[]= array("newsID"=>"006""newsTitle"=>"第6条新闻"); 
$array[]= array("newsID"=>"007""newsTitle"=>"第7条新闻"); 
$array[]= array("newsID"=>"008""newsTitle"=>"第8条新闻"); 


$smarty->assign("News"$array); 

$smarty->display("example5.tpl"); 
?>


==================================================
example5.php输出内容:
==================================================

<html
<
head><title>一行输出多条记录title>head
<
body
<
table
<
tr

tr>  
<
tr
<
td>001td
<
td>第1条新闻td

<
td>002td
<
td>第2条新闻td

<
td>003td
<
td>第3条新闻td

<
td>004td
<
td>第4条新闻td

tr>  
<
tr
<
td>005td
<
td>第5条新闻td

<
td>006td
<
td>第6条新闻td

<
td>007td
<
td>第7条新闻td

<
td>008td
<
td>第8条新闻td
tr>  
table
body
html>


说明:本来还可以优化,使得第一行不输出一个空行的 ,但是学习程序,简单为好,先就这么用了. 在这里说明一下:

{section name=loop loop=$News step=1}  
{if 
$smarty.section.loop.index == 0
tr>  
<
tr
{/if} 
<
td>{$News[loop].newsID}td
<
td>{$News[loop].newsTitle}td
{/
section}


{ section}{/ section}指的是一个循环部分,在下一节会有详细的介绍,我们主要来看看这一句:

{if $smarty.section.loop.index == 0}

$smarty.section.loop指出$smarty的实例中的section段有一个叫loop的部分, 它有一个属性叫index, 它的表示当前循环的索引值,从0开始递增,我们把它%4后与0相比较,也就是说,如果当前的索引值是4的倍数,它就输出一个,否则执行下面的部分,
很简单的就解决了一个在程序上实现起来很麻烦的事情.这里我仅演示的是如何使用{ if}语句功能,实现这个功能在Smarty的模板中还有一个非常方便的办法:{ cycle},使用的例子如下所示:

================================= 
     {
section name=rows loop=$data
<
tr bgcolor="{cycle values="#D4D0C8,#EEEEEE"}"> 
<td>{$data[rows]}td
tr
{/
section
     =================================

Posted:2004/09/30 18:40 
--------------------------------------------------------------------------------

2.---程序设计部分 


在smarty的模板设计部分我简单的把smarty在模板中的一些常用设置做了简单的介绍,这一节主要来介绍一下如何在smarty中开始我们程序设计。


首先来介绍一下在上一节中我们使用的过的.php文件中的一些元素。同样,我们拿上一节中最开始的那个index.php文件来说明一下:

================================================
index.php
================================================
/********************************************* 

* 文件名: index.php 
* 作 用: 显示实例程序 

* 作 者: 大师兄 
* Email: [email protected] 

*********************************************/ 
include_once("./comm/Smarty.class.php"); //包含smarty类文件 

$smarty = new Smarty(); //建立smarty实例对象$smarty 
$smarty->template_dir "./templates";//设置模板目录 
$smarty->compile_dir "./templates_c"//设置编译目录 


//****大家注意,这里我是我新加入的****// 

$tpl->cache_dir "./cache"//设置缓存目录 
$smarty->cache_lifetime 60 60 24//设置缓存时间 
$smarty->caching true//设置缓存方式 

//---------------------------------------------------- 
//左右边界符,默认为{},但实际应用当中容易与JavaScript 
//相冲突,所以建议设成<{}>或其它。 
//---------------------------------------------------- 
$smarty->left_delimiter "<{";  
$smarty->right_delimiter "}>"

$smarty->assign("name""李晓军"); //进行模板变量替换 

//编译并显示位于./templates下的index.tpl模板 
$smarty->display("index.tpl");  
?>


我们可以看到,smarty的程序部分实际就是符合php语言规范的一组代码,我们依次来解释一下:
1。/**/语句: 
包含的部分为程序篇头注释。主要的内容应该为对程序的作用,版权与作者及编写时间做一个简单的介绍,这在smarty中不是必需的,但从程序的风格来讲,这是一个好的风格。

2。include_once语句:
它将安装到网站的smarty文件包含到当前文件中,注意包含的路径一定要写正确。

3。$smarty = new Smarty():
这一句新建一个Smarty对象$smarty,简单的一个对象的实例化。

4。$smarty->template_dir = "" : 
这一句指明$smarty对象使用tpl模板时的路径,它是一个目录,在没有这一句时,Smarty默认的模板路径为当前目录的templates目录,实际在写程序时,我们要将这一句写明,这也是一种好的程序风格。
5。$smarty->compile_dir = "" :
这一句指明$smarty对象进行编译时的目录。在模板设计篇我们已经知道Smarty是一种编译型模板语言,而这个目录,就是它编译模板的目录,这里要注意,如果站点位于*nix服务器上,请确保compile_dir里定义的这个目录具有可写可读权限,默认情况下它的编译目录是当前目录下的templates_c,出于同样的理由我们将其明确的写出来。

6。$smarty->left_delimiter与$smarty->right_delimiter:
指明在查找模板变量时的左右分割符。默认情况下为"{"与"}",但在实际中因为我们要在模板中使用

你可能感兴趣的:(php,smarty,php,设计)