当前位置:  编程技术>php
本页文章导读:
    ▪菜鸟学PHP之Smarty入门       刚开始接触模版引擎的 PHP 设计师,听到 Smarty 时,都会觉得很难。其实笔者也不例外,碰都不敢碰一下。但是后来在剖析 XOOPS 的程序架构时,开始发现 Smarty 其实并不难。只要将 Smart.........
    ▪推荐php模板技术[转]       站点结构 代码: 站点   ┗includes        ┗class.inc   ┣templet        ┗index.htm        ┣list.htm        ┗content.htm   ┣index.php   ┗content.php 库结构 代码: -- 数据库: `test` -- .........
    ▪推荐个功能齐全的发送PHP邮件类       PHP--下面这个类的功能则很强大,不但能发html格式的邮件,还可以发附件 使用方法: 代码如下:<?    Include “email.class”    $mail->setTo("a@a.com"); //收件人    $mail-> setCC("b@b.com,c@c.co.........

[1]菜鸟学PHP之Smarty入门
    来源: 互联网  发布时间: 2013-11-30

刚开始接触模版引擎的 PHP 设计师,听到 Smarty 时,都会觉得很难。其实笔者也不例外,碰都不敢碰一下。但是后来在剖析 XOOPS 的程序架构时,开始发现 Smarty 其实并不难。只要将 Smarty 基础功练好,在一般应用上就已经相当足够了。当然基础能打好,后面的进阶应用也就不用怕了。

这篇文章的主要用意并非要深入探讨 Smarty 的使用,这在官方使用说明中都已经写得很完整了。笔者仅在此写下一些自己使用上的心得,让想要了解 Smarty 却不得其门而入的朋友,可以从中得到一些启示。就因为这篇文章的内容不是非常深入,会使用 Smarty 的朋友们可能会觉得简单了点。

目前本文已经第三次修订了,本想多加一些料进来;不过碍于时间的关系,很多 Smarty 的进阶技巧笔者并没有研究得很透彻,所以也不敢拿出来现眼,但笔者相信这篇文章应该能够满足大多数想学习 Smarty 的初学者了。当然本文有谬误的地方也欢迎告知,笔者会在下一次的修订中更正的。

Smarty介绍

什么是模版引擎

不知道从什么时候开始,有人开始对 HTML 内嵌入 Server Script 觉得不太满意。然而不论是微软的 ASP 或是开放源码的 PHP,都是属于内嵌 Server Script 的网页伺服端语言。因此也就有人想到,如果能把程序应用逻辑 (或称商业应用逻辑) 与网页呈现 (Layout) 逻辑分离的话,是不是会比较好呢?

其实这个问题早就存在已久,从交互式网页开始风行时,不论是 ASP 或是 PHP 的使用者都是身兼程序开发者与视觉设计师两种身份。可是通常这些使用者不是程序强就是美工强,如果要两者同时兼顾,那可得死掉不少脑细胞...

所以模版引擎就应运而生啦!模版引擎的目的,就是要达到上述提到的逻辑分离的功能。它能让程序开发者专注于资料的控制或是功能的达成;而视觉设计师则可专注于网页排版,让网页看起来更具有专业感!因此模版引擎很适合公司的网站开发团队使用,使每个人都能发挥其专长!

就笔者接触过的模版引擎来说,依资料呈现方式大概分成:需搭配程序处理的模版引擎和完全由模版本身自行决定的模版引擎两种形式。

在需搭配程序处理的模版引擎中,程序开发者必须要负责变量的呈现逻辑,也就是说他必须把变量的内容在输出到模版前先处理好,才能做 assign 的工作。换句话说,程序开发者还是得多写一些程序来决定变量呈现的风貌。而完全由模版本身自行决定的模版引擎,它允许变量直接 assign 到模版中,让视觉设计师在设计模版时再决定变量要如何呈现。因此它就可能会有另一套属于自己的模版程序语法 (如 Smarty) ,以方便控制变量的呈现。但这样一来,视觉设计师也得学习如何使用模版语言。

模版引擎的运作原理,首先我们先看看以下的运行图:

一般的模版引擎 (如 PHPLib) 都是在建立模版对象时取得要解析的模版,然后把变量套入后,透过 parse() 这个方法来解析模版,最后再将网页输出。

对 Smarty 的使用者来说,程序里也不需要做任何 parse 的动作了,这些 Smarty 自动会帮我们做。而且已经编译过的网页,如果模版没有变动的话, Smarty 就自动跳过编译的动作,直接执行编译过的网页,以节省编译的时间。

使用Smarty的一些概念

在一般模版引擎中,我们常看到区域的观念,所谓区块大概都会长成这样:
<!-- START : Block name -->
区域内容
<!-- END : Block name -->

这些区块大部份都会在 PHP 程序中以 if 或 for, while 来控制它们的显示状态,虽然模版看起来简洁多了,但只要一换了显示方式不同的模版, PHP 程序势必要再改一次!

在 Smarty 中,一切以变量为主,所有的呈现逻辑都让模版自行控制。因为 Smarty 会有自己的模版语言,所以不管是区块是否要显示还是要重复,都是用 Smarty 的模版语法 (if, foreach, section) 搭配变量内容作呈现。这样一来感觉上好象模版变得有点复杂,但好处是只要规划得当, PHP 程序一行都不必改。

由上面的说明,我们可以知道使用Smarty 要掌握一个原则:将程序应用逻辑与网页呈现逻辑明确地分离。就是说 PHP 程序里不要有太多的 HTML 码。程序中只要决定好那些变量要塞到模版里,让模版自己决定该如何呈现这些变量 (甚至不出现也行) 。

Smarty的基础

安装Smarty

首先,我们先决定程序放置的位置。

Windows下可能会类似这样的位置:「 d:appservwebdemo 」。

Linux下可能会类似这样的位置:「 /home/jaceju/public_html/ 」。

到Smarty的官方网站下载最新的Smarty套件:http://smarty.php.net。

解开 Smarty 2.6.0 后,会看到很多档案,其中有个 libs 资料夹。在 libs 中应该会有 3 个 class.php 檔 + 1 个 debug.tpl + 1 个 plugin 资料夹 + 1 个 core 资料夹。然后直接将 libs 复制到您的程序主资料夹下,再更名为 class 就可以了。就这样?没错!这种安装法比较简单,适合一般没有自己主机的使用者。

至于 Smarty 官方手册中为什么要介绍一些比较复杂的安装方式呢?基本上依照官方的方式安装,可以只在主机安装一次,然后提供给该主机下所有设计者开发不同程序时直接引用,而不会重复安装太多的 Smarty 复本。而笔者所提供的方式则是适合要把程序带过来移过去的程序开发者使用,这样不用烦恼主机有没有安装 Smarty 。

程序的资料夹设定

以笔者在Windows安装Appserv为例,程序的主资料夹是「d:appservwebdemo」。安装好Smarty后,我们在主资料夹下再建立这样的资料夹:

在 Linux 底下,请记得将 templates_c 的权限变更为 777 。Windows 下则将其只读取消。

第一个用Smarty写的小程序

我们先设定 Smarty 的路径,请将以下这个档案命名为 main.php ,并放置到主资料夹下:

main.php:

<?php 
include "class/Smarty.class.php"; 
define(@#__SITE_ROOT@#, @#d:/appserv/web/demo@#); // 最后没有斜线 
$tpl = new Smarty(); 
$tpl->template_dir = __SITE_ROOT . "/templates/"; 
$tpl->compile_dir = __SITE_ROOT . "/templates_c/"; 
$tpl->config_dir = __SITE_ROOT . "/configs/"; 
$tpl->cache_dir = __SITE_ROOT . "/cache/"; 
$tpl->left_delimiter = @#<{@#; 
$tpl->right_delimiter = @#}>@#; 
?> 




照上面方式设定的用意在于,程序如果要移植到其它地方,只要改 __SITE_ROOT 就可以啦。 (这里是参考 XOOPS 的 )

Smarty 的模版路径设定好后,程序会依照这个路径来抓所有模版的相对位置 (范例中是 @#d:/appserv/web/demo/templates/@# ) 。然后我们用 display() 这个 Smarty 方法来显示我们的模版。

接下来我们在 templates 资料夹下放置一个 test.htm:(扩展名叫什么都无所谓,但便于视觉设计师开发,笔者都还是以 .htm 为主。)

templates/test.htm:
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=big5"> 
<title><{$title}></title> 
</head> 
<body> 
<{$content}> 
</body> 
</html> 




现在我们要将上面的模版显示出来,并将网页标题 ($title) 与内容 ($content) 更换,请将以下档案内容命名为 test.php ,并放置在主资料夹下:

test.php:

<?php 
require "main.php"; 
$tpl->assign("title", "测试用的网页标题"); 
$tpl->assign("content", "测试用的网页内容"); 
// 上面两行也可以用这行代替 
// $tpl->assign(array("title" => "测试用的网页标题", "content" => "测试用的网页内容")); 
$tpl->display(@#test.htm@#); 
?> 




请打开浏览器,输入 http://localhost/demo/test.php 试试看(依您的环境决定网址),应该会看到以下的画面:



再到 templates_c 底下,我们会看到一个奇怪的资料夹 (%%179) ,再点选下去也是一个奇怪的资料夹 (%%1798044067) ,而其中有一个档案:

templates_c/%%179/%%1798044067/test.htm.php:

<?php /* Smarty version 2.6.0, created on 2003-12-15 22:19:45 compiled from test.htm */ ?> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=big5"> 
<title><?php echo $this->_tpl_vars[@#title@#]; ?></title> 
</head> 
<body> 
<?php echo $this->_tpl_vars[@#content@#]; ?> 
</body> 
</html> 




没错,这就是 Smarty 编译过的档案。它将我们在模版中的变量转换成了 PHP 的语法来执行,下次再读取同样的内容时, Smarty 就会直接抓取这个档案来执行了。

最后我们整理一下整个 Smarty 程序撰写步骤:

Step 1. 加载 Smarty 模版引擎。

Step 2. 建立 Smarty 对象。

Step 3. 设定 Smarty 对象的参数。

Step 4. 在程序中处理变量后,再用 Smarty 的 assign 方法将变量置入模版里。

Step 5. 利用 Smarty 的 display 方法将网页秀出。

如何安排你的程序架构

上面我们看到除了 Smarty 所需要的资料夹外 (class 、 configs 、 templates 、 templates_c) ,还有两个资料夹: includes 、 modules 。其实这是笔者模仿 XOOPS 的架构所建立出来的,因为 XOOPS 是笔者所接触到的程序中,少数使用 Smarty 模版引擎的架站程序。所谓西瓜偎大边,笔者这样的程序架构虽没有 XOOPS 的百分之一强,但至少给人看时还有 XOOPS 撑腰。

includes 这个资料夹主要是用来放置一些 function 、 sql 檔,这样在 main.php 就可以将它们引入了,如下:

main.php:


<?php 
include "class/Smarty.class.php"; 
define(@#__SITE_ROOT@#, @#d:/appserv/web/demo@#); // 最后没有斜线 
// 以 main.php 的位置为基准 
require_once "includes/functions.php"; 
require_once "includes/include.php"; 
$tpl = new Smarty(); 
$tpl->template_dir = __SITE_ROOT . "/templates/"; 
$tpl->compile_dir = __SITE_ROOT . "/templates_c/"; 
$tpl->config_dir = __SITE_ROOT . "/configs/"; 
$tpl->cache_dir = __SITE_ROOT . "/cache/"; 
$tpl->left_delimiter = @#<{@#; 
$tpl->right_delimiter = @#}>@#; 
?> 




modules 这个资料夹则是用来放置程序模块的,如此一来便不会把程序丢得到处都是,整体架构一目了然。

上面我们也提到 main.php ,这是整个程序的主要核心,不论是常数定义、外部程序加载、共享变量建立等,都是在这里开始的。所以之后的模块都只要将这个档案包含进来就可以啦。因此在程序流程规划期间,就必须好好构思 main.php 中应该要放那些东西;当然利用 include 或 require 指令,把每个环节清楚分离是再好不过了。



在上节提到的 Smarty 程序 5 步骤, main.php 就会帮我们先将前 3 个步骤做好,后面的模块程序只要做后面两个步骤就可以了。

从变量开始

如何使用变量

从上一章范例中,我们可以清楚地看到我们利用 <{ 及 }> 这两个标示符号将变量包起来。预设的标示符号为 { 及 } ,但为了中文冲码及 javascript 的关系,因此笔者还是模仿 XOOPS ,将标示符号换掉。变量的命名方式和 PHP 的变量命名方式是一模一样的,前面也有个 $ 字号 (这和一般的模版引擎不同)。标示符号就有点像是 PHP 中的
<?php 及 ?> 



(事实上它们的确会被替换成这个) ,所以以下的模版变量写法都是可行的:

1. <{$var}>

2. <{ $var }> <!-- 和变量之间有空格 -->

3. <{$var

}> <!-- 启始的标示符号和结束的标示符号不在同一行 -->
在 Smarty 里,变量预设是全域的,也就是说你只要指定一次就好了。指定两次以上的话,变量内容会以最后指定的为主。就算我们在主模版中加载了外部的子模版,子模版中同样的变量一样也会被替代,这样我们就不用再针对子模版再做一次解析的动作。

而在 PHP 程序中,我们用 Smarty 的 assign 来将变量置放到模版中。 assign 的用法官方手册中已经写得很多了,用法就如同上一节的范例所示。不过在重复区块时,我们就必须将变量做一些手脚后,才能将变量 assign 到模版中,这在下一章再提。

修饰你的变量

上面我们提到 Smarty 变量呈现的风貌是由模版自行决定的,所以 Smarty 提供了许多修饰变量的函式。使用的方法如下:

<{变量|修饰函式}> <!-- 当修饰函式没有参数时 -->

<{变量|修饰函式:"参数(非必要,视函式而定)"}> <!-- 当修饰函式有参数时 -->
范例如下:

<{$var|nl2br}> <!-- 将变量中的换行字符换成 <br /> -->

<{$var|string_format:"%02d"}> <!-- 将变量格式化 -->
好,那为什么要让模版自行决定变量呈现的风貌?先看看底下的 HTML ,这是某个购物车结帐的部份画面。

<input name="total" type="hidden" value="21000" />

总金额:21,000 元
一般模版引擎的模版可能会这样写:

<input name="total" type="hidden" value="{total}" />

总金额:{format_total} 元
它们的 PHP 程序中要这样写:


<?php 
$total = 21000; 
$tpl->assign("total", $total); 
$tpl->assign("format_total", number_format($total)); 
?> 




而 Smarty 的模版就可以这样写: (number_format 修饰函式请到Smarty 官方网页下载)

<input name="total" type="hidden" value="<{$total}>" />

总金额:<{$total|number_format:""}> 元
Smarty 的 PHP 程序中只要这样写:


<?php 
$total = 21000; 
$tpl->assign("total", $total); 
?> 




所以在 Smarty 中我们只要指定一次变量,剩下的交给模版自行决定即可。这样了解了吗?这就是让模版自行决定变量呈现风貌的好处!

控制模版的内容

重复的区块

在 Smarty 样板中,我们要重复一个区块有两种方式: foreach 及 section 。而在程序中我们则要 assign 一个数组,这个数组中可以包含数组数组。就像下面这个例子:

首先我们来看 PHP 程序是如何写的:

test2.php:


<?php 
require "main.php"; 
$array1 = array(1 => "苹果", 2 => "菠萝", 3 => "香蕉", 4 => "芭乐"); 
$tpl->assign("array1", $array1); 
$array2 = array( 
array("index1" => "data1-1", "index2" => "data1-2", "index3" => "data1-3"), 
array("index1" => "data2-1", "index2" => "data2-2", "index3" => "data2-3"), 
array("index1" => "data3-1", "index2" => "data3-2", "index3" => "data3-3"), 
array("index1" => "data4-1", "index2" => "data4-2", "index3" => "data4-3"), 
array("index1" => "data5-1", "index2" => "data5-2", "index3" => "data5-3")); 
$tpl->assign("array2", $array2); 
$tpl->display("test2.htm"); 
?> 




而模版的写法如下:

templates/test2.htm:

<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=big5"> 
<title>测试重复区块</title> 
</head> 
<body> 
<pre> 
利用 foreach 来呈现 array1 
<{foreach item=item1 from=$array1}> 
<{$item1}> 
<{/foreach}> 
利用 section 来呈现 array1 
<{section name=sec1 loop=$array1}> 
<{$array1[sec1]}> 
<{/section}> 
利用 foreach 来呈现 array2 
<{foreach item=index2 from=$array2}> 
<{foreach key=key2 item=item2 from=$index2}> 
<{$key2}>: <{$item2}> 
<{/foreach}> 
<{/foreach}> 
利用 section 来呈现 array1 
<{section name=sec2 loop=$array2}> 
index1: <{$array2[sec2].index1}> 
index2: <{$array2[sec2].index2}> 
index3: <{$array2[sec2].index3}> 
<{/section}> 
</pre> 
</body> 
</html> 




执行上例后,我们发现不管是 foreach 或 section 两个执行结果是一样的。那么两者到底有何不同呢?

第一个差别很明显,就是foreach 要以巢状处理的方式来呈现我们所 assign 的两层数组变量,而 section 则以「主数组[循环名称].子数组索引」即可将整个数组呈现出来。由此可知, Smarty 在模版中的 foreach 和 PHP 中的 foreach 是一样的;而 section 则是 Smarty 为了处理如上列的数组变量所发展出来的叙述。当然 section 的功能还不只如此,除了下一节所谈到的巢状资料呈现外,官方手册中也提供了好几个 section 的应用范例。

不过要注意的是,丢给 section 的数组索引必须是从 0 开始的正整数,即 0, 1, 2, 3, ...。如果您的数组索引不是从 0 开始的正整数,那么就得改用 foreach 来呈现您的资料。您可以参考官方讨论区中的此篇讨论,其中探讨了 section 和 foreach 的用法。

巢状资料的呈现

模版引擎里最令人伤脑筋的大概就是巢状资料的呈现吧,许多著名的模版引擎都会特意强调这点,不过这对 Smarty 来说却是小儿科。

最常见到的巢状资料,就算论譠程序中的讨论主题区吧。假设要呈现的结果如下:

公告区

站务公告

文学专区

好书介绍

奇文共赏

计算机专区

硬件外围

软件讨论

程序中我们先以静态资料为例:

test3.php:


<?php 
require "main.php"; 
$forum = array( 
array("category_id" => 1, "category_name" => "公告区", 
"topic" => array( 
array("topic_id" => 1, "topic_name" => "站务公告") 

), 
array("category_id" => 2, "category_name" => "文学专区", 
"topic" => array( 
array("topic_id" => 2, "topic_name" => "好书介绍"), 
array("topic_id" => 3, "topic_name" => "奇文共赏") 

), 
array("category_id" => 3, "category_name" => "计算机专区", 
"topic" => array( 
array("topic_id" => 4, "topic_name" => "硬件外围"), 
array("topic_id" => 5, "topic_name" => "软件讨论") 


); 
$tpl->assign("forum", $forum); 
$tpl->display("test3.htm"); 
?> 




模版的写法如下:

templates/test3.htm:

<html> 
<head> 
<title>巢状循环测试</title> 
</head> 
<body> 
<table width="200" border="0" align="center" cellpadding="3" cellspacing="0"> 
<{section name=sec1 loop=$forum}> 
<tr> 
<td colspan="2"><{$forum[sec1].category_name}></td> 
</tr> 
<{section name=sec2 loop=$forum[sec1].topic}> 
<tr> 
<td width="25"> </td> 
<td width="164"><{$forum[sec1].topic[sec2].topic_name}></td> 
</tr> 
<{/section}> 
<{/section}> 
</table> 
</body> 
</html> 




执行的结果就像笔者举的例子一样。

因此呢,在程序中我们只要想办法把所要重复值一层一层的塞到数组中,再利用 <{第一层数组[循环1].第二层数组[循环2].第三层数组[循环3]. ... .数组索引}> 这样的方式来显示每一个巢状循环中的值。至于用什么方法呢?下一节使用数据库时我们再提。

转换数据库中的资料

上面提到如何显示巢状循环,而实际上应用时我们的资料可能是从数据库中抓取出来的,所以我们就得想办法把数据库的资料变成上述的多重数组的形式。这里笔者用一个 DB 类别来抓取数据库中的资料,您可以自行用您喜欢的方法。

我们只修改 PHP 程序,模版还是上面那个 (这就是模版引擎的好处~),其中 $db 这个对象假设已经在 main.php 中建立好了,而且抓出来的资料就是上面的例子。

test3.php:


<?php 
require "main.php"; 
// 先建立第一层数组 
$category = array(); 
$db->setSQL($SQL1, @#CATEGORY@#); 
if (!$db->query(@#CATEGORY@#)) die($db->error()); 
// 抓取第一层循环的资料 
while ($item_category = $db->fetchAssoc(@#CATEGORY@#)) 

// 建立第二层数组 
$topic = array(); 
$db->setSQL(sprintf($SQL2, $item_category[@#category_id@#]), @#TOPIC@#); 
if (!$db->query(@#TOPIC@#)) die($db->error()); 
// 抓取第二层循环的资料 
while ($item_topic = $db->fetchAssoc(@#TOPIC@#)) 

// 把抓取的数据推入第二层数组中 
array_push($topic, $item_topic); 

// 把第二层数组指定为第一层数组所抓取的数据中的一个成员 
$item_category[@#topic@#] = $topic; 
// 把第一层数据推入第一层数组中 
array_push($category, $item_category); 

$tpl->assign("forum", $category); 
$tpl->display("test3.htm"); 
?> 




在数据库抓取一笔资料后,我们得到的是一个包含该笔数据的数组。透过 while 叙述及 array_push 函式,我们将数据库中的资料一笔一笔塞到数组里。如果您只用到单层循环,就把第二层循环 (红色的部份) 去掉即可。

决定内容是否显示

要决定是否显示内容,我们可以使用 if 这个语法来做选择。例如如果使用者已经登入的话,我们的模版就可以这样写:

<{if $is_login == true}>
显示使用者操作选单
<{else}>
显示输入帐号和密码的窗体
<{/if}>

要注意的是,「==」号两边一定要各留至少一个空格符,否则 Smarty 会无法解析。

if 语法一般的应用可以参照官方使用说明,所以笔者在这里就不详加介绍了。不过笔者发现了一个有趣的应用:常常会看到程序里要产生这样的一个表格: (数字代表的是资料集的顺序)

1 2

3 4

5 6

7 8

这个笔者称之为「横向重复表格」。它的特色和传统的纵向重复不同,前几节我们看到的重复表格都是从上而下,一列只有一笔资料。而横向重复表格则可以横向地在一列中产生 n 笔资料后,再换下一列,直到整个循环结束。要达到这样的功能,最简单的方式只需要 section 和 if 搭配即可。

我们来看看下面这个例子:

test4.php:


<?php 
require "main.php"; 
$my_array = array( 
array("value" => "0"), 
array("value" => "1"), 
array("value" => "2"), 
array("value" => "3"), 
array("value" => "4"), 
array("value" => "5"), 
array("value" => "6"), 
array("value" => "7"), 
array("value" => "8"), 
array("value" => "9")); 
$tpl->assign("my_array", $my_array); 
$tpl->display(@#test4.htm@#); 
?> 




模版的写法如下:

templates/test4.htm:

<html> 
<head> 
<title>横向重复表格测试</title> 
</head> 
<body> 
<table width="500" border="1" cellspacing="0" cellpadding="3"> 
<tr> 
<{section name=sec1 loop=$my_array}> 
<td><{$my_array[sec1].value}></td> 
<{if $smarty.section.sec1.rownum is div by 2}> 
</tr> 
<tr> 
<{/if}> 
<{/section}> 
</tr> 
</table> 
</body> 
</html> 




重点在于 $smarty.section.sec1.rownum 这个 Smarty 变量,在 section 循环中这个变量会取得从 1 开始的索引值,所以当 rownum 能被 2 除尽时,就输出 </tr><tr> 使表格换列 (注意!是 </tr> 在前面<tr> 在后面) 。因此数字 2 就是我们在一列中想要呈现的资料笔数。各位可以由此去变化其它不同的呈现方式。

加载外部内容

我们可以在模版内加载 PHP 程序代码或是另一个子模版,分别是使用 include_php 及 include 这两个 Smarty 模版语法; include_php 笔者较少用,使用方式可以查询官方手册,这里不再叙述。

在使用 include 时,我们可以预先加载子模版,或是动态加载子模版。预先加载通常使用在有共同的文件标头及版权宣告;而动态加载则可以用在统一的框架页,而进一步达到如 Winamp 般可换 Skin 。当然这两种我们也可以混用,视状况而定。

我们来看看下面这个例子:

test5.php:


<?php 
require "main.php"; 
$tpl->assign("title", "Include 测试"); 
$tpl->assign("content", "这是模版 2 中的变量"); 
$tpl->assign("dyn_page", "test5_3.htm"); 
$tpl->display(@#test5_1.htm@#); 
?> 




模版 1 的写法如下:

templates/test5_1.htm:

<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=big5"> 
<title><{$title}></title> 
</head> 
<body> 
<{include file="test5_2.htm"}><br /> 
<{include file=$dyn_page}> 
<{include file="test5_4.htm" custom_var="自订变量的内容"}> 
</body> 
</html> 




模版 2 的写法如下:

templates/test5_2.htm:

<{$content}>
模版 3 的写法如下:

templates/test5_3.htm:

这是模版 3 的内容
模版 4 的写法如下:

templates/test5_4.htm:

<{$custom_var}>
这里注意几个重点:1. 模版的位置都是以先前定义的 template_dir 为基准;2. 所有 include 进来的子模版中,其变量也会被解译。;3. include 中可以用「变量名称=变量内容」来指定引含进来的模版中所包含的变量,如同上面模版 4 的做法。


    
[2]推荐php模板技术[转]
    来源: 互联网  发布时间: 2013-11-30
站点结构

代码:
站点
  ┗includes
       ┗class.inc
  ┣templet
       ┗index.htm
       ┣list.htm
       ┗content.htm
  ┣index.php
  ┗content.php
库结构

代码:
-- 数据库: `test`
-- 表的结构 `test`
CREATE TABLE `test` (
  `id` smallint(3) NOT NULL auto_increment,
  `name` varchar(10) NOT NULL default '',
  `sex` enum('男','女') NOT NULL default '男',
  `age` smallint(2) NOT NULL default '0',
  `email` varchar(20) NOT NULL default '',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
--------------- class.inc文件 -------- 
代码如下:
<?php   
 class mycon{    
    private $myhost;   
    private $myuser;   
    private $mypwd;   
    function mycon($host="localhost",$user="root",$pwd=""){   
      $this->myhost = $host;   
      $this->myuser = $user;   
      $this->mypwd = $pwd;   
    }   
    function connect(){   
      return mysql_connect($this->myhost,$this->myuser,$this->mypwd);   
    }   
  }   

  class templet{   
     private $source_file;   
     function get_file($filename){   
         $this->source_file = file_get_contents($filename);   
     }   
     function parse($tags,$vals){   
         if(!is_array($tags)){   
            return preg_replace("|{".$tags."}|",$vals,$this->source_file);    
         }else{   
            $an = count($tags);   
            for($i=0;$i<$an;$i++){   
               $tags[$i] = "|{".$tags[$i]."}|";   
            }   
           return preg_replace($tags,$vals,$this->source_file);    
        }   
     }   
  }   

?>
 



----------------index.htm文件------------------- 
代码如下:
<HTML>   
<HEAD>   
<TITLE>首页</TITLE>   
</HEAD>   
<BODY >   
<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="1" bgcolor=#000000 >   
    <caption>成员列表</caption>   
    <TR bgcolor="#ffffff" align=center>   
      <TD width=25%>姓名</TD>   
      <TD width=25%>性别</TD>   
      <TD width=25%>年龄</TD>   
      <TD width=25%>email</TD>   
    </TR>   
    {所有列表}   
    <TR bgcolor="#ffffff">   
      <TD colspan=2>共有{总条数}条记录,显示{每页条数}条/页</TD>   
      <TD colspan=2 align=right>{分页}</TD>   
    </TR>   
</TABLE>   
</BODY>   
</HTML> 




------------------list.htm文件------------------- 
代码如下:
<TR bgcolor="#ffffff" align=center>   
  <TD><a href="/blog_article/content/id/{成员ID}.html">{姓名}</a></TD><TD>{性别}</TD><TD>{年龄}</TD><TD>{email}</TD>   
</TR>
 



-------------------content.htm文件----------------------- 
代码如下:
<HTML>   
<HEAD>   
<TITLE>成员信息</TITLE>   
</HEAD>   
<BODY >   
<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="1" bgcolor=#000000 >   
    <caption>成员信息</caption>   
    <TR bgcolor="#ffffff">   
      <TD width=60>姓名</TD><TD>{姓名}</TD></TR>   
    <TR bgcolor="#ffffff">   
      <TD>性别</TD><TD>{性别}</TD></TR>   
    <TR bgcolor="#ffffff">   
      <TD>年龄</TD><TD>{年龄}</TD></TR>   
    <TR bgcolor="#ffffff">   
      <TD>email</TD><TD>{email}</TD></TR>   
</TABLE>   
</BODY>
 



----------------index.php文件-------------------------- 
代码如下:
<?php    
  include("includes/class.inc");    
  $tmpl =new templet;    
  $mycon =new mycon;    
  $con = $mycon->connect();    
  mysql_select_db("test",$con);    
  $lim = 20; //每页显示行数    
  $p = ($_GET[p]) ? $_GET[p] : 1;  //当前页号    

  /***** 生成列表开始 *****/    

  $lists = "";    
  $tmpl->get_file("templet/list.htm");    
  $tags = array("成员ID","姓名","性别","年龄","email");  //应与表字段同顺序    
  $rs = mysql_query("select * from test order by id desc limit ".($p-1)*$lim.",$lim");    
  while($row=mysql_fetch_row($rs)){    
     $lists .= $tmpl->parse($tags,$row);    
  }    

   /***** 生成列表完成, 分页开始 *****/    

  $tmpl->get_file("templet/index.htm");    
  $rn = @mysql_result(mysql_query("select count(id) from test"),0);  //总记录数    
  $ps = ceil($rn/$lim);   //总页数    
  $pagination = "<a href='/blog_article/p/1.html'>首页</a> ";    
  if($p>1) $pagination .= "<a href='/blog_article/p/.html".($p-1)."'>";    
  else $pagination .= "<font color='#777777'>";    
  $pagination .= "上一页</font></a> ";    
  if($p<$ps) $pagination .= "<a href='/blog_article/p/.html".($p+1)."'>";    
  else $pagination .= "<font color='#777777'>";    
  $pagination .= "下一页</font></a> <a href='/blog_article/p/{$ps}.html'>尾页</a>  ";    

   /***** 分页完成, 生成页面开始 *****/    
   $tags = array("所有列表","总条数","每页条数","分页");    
   $vals = array($lists,$rn,$lim,$pagination);    
   echo $tmpl->parse($tags,$vals);    
?> 




---------------- content.php文件 --------------- 
代码如下:
<?php   
  include("includes/class.inc");   
  $tmpl =new templet;   
  $mycon =new mycon;   
  $con = $mycon->connect();   
  mysql_select_db("test",$con);   
  $tmpl->get_file("templet/content.htm");   
  $rs = mysql_query("select * from test where id=$_GET[id]");   
  $row=@mysql_fetch_row($rs);   
  unset($row[0]); //去掉表中读出的多余字段,对齐替换项,或在SELECT语句中列表字段    
  $tags = array("姓名","性别","年龄","email");    
  echo $tmpl->parse($tags,$row);   
?> 


    
[3]推荐个功能齐全的发送PHP邮件类
    来源: 互联网  发布时间: 2013-11-30
PHP--下面这个类的功能则很强大,不但能发html格式的邮件,还可以发附件
使用方法:
代码如下:
<?   
Include “email.class”   

$mail->setTo("a@a.com"); //收件人   
$mail-> setCC("b@b.com,c@c.com"); //抄送   
$mail-> setCC("d@b.com,e@c.com"); //秘密抄送   
$mail->setFrom(“f@f.com”);//发件人   
$mail->setSubject(“主题”) ; //主题   
$mail->setText(“文本格式”) ;//发送文本格式也可以是变量   
$mail->setHTML(“html格式”) ;//发送html格式也可以是变量   
$mail->setAttachments(“c:a.jpg”) ;//添加附件,需表明路径   
$mail->send(); //发送邮件   
?> 

代码如下:
<?php   
class Email {   
//---设置全局变量   
var $mailTo = ""; // 收件人   
var $mailCC = ""; // 抄送   
var $mailBCC = ""; // 秘密抄送   
var $mailFrom = ""; // 发件人   
var $mailSubject = ""; // 主题   
var $mailText = ""; // 文本格式的信件主体   
var $mailHTML = ""; // html格式的信件主体   
var $mailAttachments = ""; // 附件   
/* 函数setTo($inAddress) :用于处理邮件的地址 参数 $inAddress   
为包涵一个或多个字串,email地址变量,使用逗号来分割多个邮件地址   
默认返回值为true   
**********************************************************/   
function setTo($inAddress){   
//--用explode()函数根据”,”对邮件地址进行分割   
$addressArray = explode( ",",$inAddress);   
//--通过循环对邮件地址的合法性进行检查   
for($i=0;$i<count($addressArray);$i++){ if($this->checkEmail($addressArray[$i])==false) return false; }   
//--所有合法的email地址存入数组中   
$this->mailTo = implode($addressArray, ",");   
return true; }   
/**************************************************   
函数 setCC($inAddress) 设置抄送人邮件地址   
参数 $inAddress 为包涵一个或多个邮件地址的字串,email地址变量,   
使用逗号来分割多个邮件地址 默认返回值为true   
**************************************************************/   
function setCC($inAddress){   
//--用explode()函数根据”,”对邮件地址进行分割   
$addressArray = explode( ",",$inAddress);   
//--通过循环对邮件地址的合法性进行检查   
for($i=0;$i<count($addressArray);$i++){ if($this->checkEmail($addressArray[$i])==false) return false; }   
//--所有合法的email地址存入数组中   
$this->mailCC = implode($addressArray, ",");   
return true; }   
/***************************************************   
函数setBCC($inAddress) 设置秘密抄送地址 参数 $inAddress 为包涵一个或多   
个邮件地址的字串,email地址变量,使用逗号来分割多个邮件地址 默认返回值为   
true   
******************************************/   
function setBCC($inAddress){   
//--用explode()函数根据”,”对邮件地址进行分割   
$addressArray = explode( ",",$inAddress);   
//--通过循环对邮件地址的合法性进行检查   
for($i=0;$i<count($addressArray);$i++)   
{ if($this->checkEmail($addressArray[$i])==false)   
return false;   
}   
//--所有合法的email地址存入数组中   
$this->mailBCC = implode($addressArray, ",");   
return true;   
}   
/*****************************************************************   
函数setFrom($inAddress):设置发件人地址 参数 $inAddress 为包涵邮件   
地址的字串默认返回值为true   
***************************************/   
function setFrom($inAddress){   
if($this->checkEmail($inAddress)){   
$this->mailFrom = $inAddress;   
return true;   
} return false; }   
/**********************   
函数 setSubject($inSubject) 用于设置邮件主题参数$inSubject为字串,   
默认返回的是true   
*******************************************/   
function setSubject($inSubject){   
if(strlen(trim($inSubject)) > 0){   
$this->mailSubject = ereg_replace( "n", "",$inSubject);   
return true; }   
return false; }   
/****************************************************   
函数setText($inText) 设置文本格式的邮件主体参数 $inText 为文本内容默   
认返回值为true   
****************************************/   
function setText($inText){   
if(strlen(trim($inText)) > 0){   
$this->mailText = $inText;   
return true; }   
return false;   
}   
/**********************************   
函数setHTML($inHTML) 设置html格式的邮件主体参数$inHTML为html格式,   
默认返回值为true   
************************************/   
function setHTML($inHTML){   
if(strlen(trim($inHTML)) > 0){   
$this->mailHTML = $inHTML;   
return true; }   
return false; }   
/**********************   
函数 setAttachments($inAttachments) 设置邮件的附件 参数$inAttachments   
为一个包涵目录的字串,也可以包涵多个文件用逗号进行分割 默认返回值为true   
*******************************************/   
function setAttachments($inAttachments){   
if(strlen(trim($inAttachments)) > 0){   
$this->mailAttachments = $inAttachments;   
return true; }   
return false; }   
/*********************************   
函数 checkEmail($inAddress) :这个函数我们前面已经调用过了,主要就是   
用于检查email地址的合法性   
*****************************************/   
function checkEmail($inAddress){   
return (ereg( "^[^@ ]+@([a-zA-Z0-9-]+.)+([a-zA-Z0-9-]{2}|net|com|gov|mil|org|edu|int)$",$inAddress));   
}   
/*************************************************   
函数loadTemplate($inFileLocation,$inHash,$inFormat) 读取临时文件并且   
替换无用的信息参数$inFileLocation用于定位文件的目录   
$inHash 由于存储临时的值 $inFormat 由于放置邮件主体   
***********************************************************/   
function loadTemplate($inFileLocation,$inHash,$inFormat){   
/* 比如邮件内有如下内容: Dear ~!UserName~,   
Your address is ~!UserAddress~ */   
//--其中”~!”为起始标志”~”为结束标志   
$templateDelim = "~";   
$templateNameStart = "!";   
//--找出这些地方并把他们替换掉   
$templateLineOut = ""; //--打开临时文件   
if($templateFile = fopen($inFileLocation, "r")){   
while(!feof($templateFile)){   
$templateLine = fgets($templateFile,1000);   
$templateLineArray = explode($templateDelim,$templateLine);   
for( $i=0; $i<count($templateLineArray);$i++){   
//--寻找起始位置   
if(strcspn($templateLineArray[$i],$templateNameStart)==0){   
//--替换相应的值   
$hashName = substr($templateLineArray[$i],1);   
//--替换相应的值   
$templateLineArray[$i] = ereg_replace($hashName,(string)$inHash[$hashName],$hashName);   
}   
}   
//--输出字符数组并叠加   
$templateLineOut .= implode($templateLineArray, "");   
} //--关闭文件fclose($templateFile);   
//--设置主体格式(文本或html)   
if( strtoupper($inFormat)== "TEXT" )   
return($this->setText($templateLineOut));   
else if( strtoupper($inFormat)== "HTML" )   
return($this->setHTML($templateLineOut));   
} return false;   
}   
/*****************************************   
函数 getRandomBoundary($offset) 返回一个随机的边界值   
参数 $offset 为整数 – 用于多管道的调用 返回一个md5()编码的字串   
****************************************/   
function getRandomBoundary($offset = 0){   
//--随机数生成   
srand(time()+$offset);   
//--返回 md5 编码的32位 字符长度的字串   
return ( "----".(md5(rand()))); }   
/********************************************   
函数: getContentType($inFileName)用于判断附件的类型   
**********************************************/   
function getContentType($inFileName){   
//--去除路径   
$inFileName = basename($inFileName);   
//--去除没有扩展名的文件   
if(strrchr($inFileName, ".") == false){   
return "application/octet-stream";   
}   
//--提区扩展名并进行判断   
$extension = strrchr($inFileName, ".");   
switch($extension){   
case ".gif": return "image/gif";   
case ".gz": return "application/x-gzip";   
case ".htm": return "text/html";   
case ".html": return "text/html";   
case ".jpg": return "image/jpeg";   
case ".tar": return "application/x-tar";   
case ".txt": return "text/plain";   
case ".zip": return "application/zip";   
default: return "application/octet-stream";   
}   
return "application/octet-stream";   
}   
/**********************************************   
函数formatTextHeader把文本内容加上text的文件头   
*****************************************************/   
function formatTextHeader(){ $outTextHeader = "";   
$outTextHeader .= "Content-Type: text/plain;   
charset=us-asciin";   
$outTextHeader .= "Content-Transfer-Encoding: 7bitnn";   
$outTextHeader .= $this->mailText. "n";   
return $outTextHeader;   
} /************************************************   
函数formatHTMLHeader()把邮件主体内容加上html的文件头   
******************************************/   
function formatHTMLHeader(){   
$outHTMLHeader = "";   
$outHTMLHeader .= "Content-Type: text/html;   
charset=us-asciin";   
$outHTMLHeader .= "Content-Transfer-Encoding: 7bitnn";   
$outHTMLHeader .= $this->mailHTML. "n";   
return $outHTMLHeader;   
}   
/**********************************   
函数 formatAttachmentHeader($inFileLocation) 把邮件中的附件标识出来   
********************************/   
function formatAttachmentHeader($inFileLocation){   
$outAttachmentHeader = "";   
//--用上面的函数getContentType($inFileLocation)得出附件类型   
$contentType = $this->getContentType($inFileLocation);   
//--如果附件是文本型则用标准的7位编码   
if(ereg( "text",$contentType)){   
$outAttachmentHeader .= "Content-Type: ".$contentType. ";n";   
$outAttachmentHeader .= ' name="'.basename($inFileLocation). '"'. "n";   
$outAttachmentHeader .= "Content-Transfer-Encoding: 7bitn";   
$outAttachmentHeader .= "Content-Disposition: attachment;n";   
$outAttachmentHeader .= ' filename="'.basename($inFileLocation). '"'. "nn";   
$textFile = fopen($inFileLocation, "r");   
while(!feof($textFile)){   
$outAttachmentHeader .= fgets($textFile,1000);   
}   
//--关闭文件 fclose($textFile);   
$outAttachmentHeader .= "n";   
}   
//--非文本格式则用64位进行编码   
else{ $outAttachmentHeader .= "Content-Type: ".$contentType. ";n";   
$outAttachmentHeader .= ' name="'.basename($inFileLocation). '"'. "n";   
$outAttachmentHeader .= "Content-Transfer-Encoding: base64n";   
$outAttachmentHeader .= "Content-Disposition: attachment;n";   
$outAttachmentHeader .= ' filename="'.basename($inFileLocation). '"'. "nn";   
//--调用外部命令uuencode进行编码   
exec( "uuencode -m $inFileLocation nothing_out",$returnArray);   
for ($i = 1; $i<(count($returnArray)); $i++){   
$outAttachmentHeader .= $returnArray[$i]. "n";   
}   
} return $outAttachmentHeader;   
}   
/******************************   
函数 send()用于发送邮件,发送成功返回值为true   
************************************/   
function send(){   
//--设置邮件头为空   
$mailHeader = "";   
//--添加抄送人   
if($this->mailCC != "")   
$mailHeader .= "CC: ".$this->mailCC. "n";   
//--添加秘密抄送人   
if($this->mailBCC != "")   
$mailHeader .= "BCC: ".$this->mailBCC. "n";   
//--添加发件人   
if($this->mailFrom != "")   
$mailHeader .= "FROM: ".$this->mailFrom. "n";   
//---------------------------邮件格式------------------------------   
//--文本格式   
if($this->mailText != "" && $this->mailHTML == "" && $this->mailAttachments == ""){   
return mail($this->mailTo,$this->mailSubject,$this->mailText,$mailHeader);   
}   
//--html或text格式   
else if($this->mailText != "" && $this->mailHTML != "" && $this->mailAttachments == ""){   
$bodyBoundary = $this->getRandomBoundary();   
$textHeader = $this->formatTextHeader();   
$htmlHeader = $this->formatHTMLHeader();   
//--设置 MIME-版本   
$mailHeader .= "MIME-Version: 1.0n";   
$mailHeader .= "Content-Type: multipart/alternative;n";   
$mailHeader .= ' boundary="'.$bodyBoundary. '"';   
$mailHeader .= "nnn";   
//--添加邮件主体和边界   
$mailHeader .= "--".$bodyBoundary. "n";   
$mailHeader .= $textHeader;   
$mailHeader .= "--".$bodyBoundary. "n";   
//--添加html标签   
$mailHeader .= $htmlHeader;   
$mailHeader .= "n--".$bodyBoundary. "--";   
//--发送邮件   
return mail($this->mailTo,$this->mailSubject, "",$mailHeader);   
}   
//--文本加html加附件   
else if($this->mailText != "" && $this->mailHTML != "" && $this->mailAttachments != ""){   
$attachmentBoundary = $this->getRandomBoundary();   
$mailHeader .= "Content-Type: multipart/mixed;n";   
$mailHeader .= ' boundary="'.$attachmentBoundary. '"'. "nn";   
$mailHeader .= "This is a multi-part message in MIME format.n";   
$mailHeader .= "--".$attachmentBoundary. "n";   
$bodyBoundary = $this->getRandomBoundary(1);   
$textHeader = $this->formatTextHeader();   
$htmlHeader = $this->formatHTMLHeader();   
$mailHeader .= "MIME-Version: 1.0n";   
$mailHeader .= "Content-Type: multipart/alternative;n";   
$mailHeader .= ' boundary="'.$bodyBoundary. '"';   
$mailHeader .= "nnn";   
$mailHeader .= "--".$bodyBoundary. "n";   
$mailHeader .= $textHeader;   
$mailHeader .= "--".$bodyBoundary. "n";   
$mailHeader .= $htmlHeader;   
$mailHeader .= "n--".$bodyBoundary. "--";   
//--获取附件值   
$attachmentArray = explode( ",",$this->mailAttachments);   
//--根据附件的个数进行循环   
for($i=0;$i<count($attachmentArray);$i++){   
//--分割 $mailHeader .= "n--".$attachmentBoundary. "n";   
//--附件信息   
$mailHeader .= $this->formatAttachmentHeader($attachmentArray[$i]);   
}   
$mailHeader .= "--".$attachmentBoundary. "--";   
return mail($this->mailTo,$this->mailSubject, "",$mailHeader);   
}   
return false;   
}   
}   
?>

    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3