序言
区域内容
这些区块大部份都会在 PHP 程式中以 if 或 for, while 来控制它们的显示状态,虽然样版看起来简洁多了,但只要一换了显示方式不同的样版, 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 的 )templates/test.htm:
php代码:
php代码:
require "main.php";
$tpl->assign("title", "测试用的网页标题");
$tpl->assign("content", "测试用的网页内容");
// 上面两行也可以用这行代替
// $tpl->assign(array("title" => "测试用的网页标题", "content" => "测试用的网页内容"));
$tpl->display('test.htm');
?>templates_c/%%179/%%1798044067/test.htm.php:
没错,这就是 Smarty 编译过的档桉。它将我们在样版中的变数转换成了 PHP 的语法来执行,下次再读取同样的内容时, Smarty 就会直接抓取这个档桉来执行了。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 这个资料夹则是用来放置程式模组的,如此一来便不会把程式丢得到处都是,整体架构一目瞭然。
1. <{$var}>
2. <{ $var }>
3. <{$var}>
在 Smarty 裡,变数预设是全域的,也就是说你只要指定一次就好了。指定两次以上的话,变数内容会以最后指定的为主。就算我们在主样版中载入了外部的子样版,子样版中同样的变数一样也会被替代,这样我们就不用再针对子样版再做一次解析的动作。<{变数|修饰函式}>
<{变数|修饰函式:"参数(非必要,视函式而定)"}>
范例如下:
php代码:
<{$var|nl2br}>
<{$var|string_format:"%02d"}>
总金额:21,000 元
一般样版引擎的样版可能会这样写:
总金额:{format_total} 元
php代码:
$total = 21000;
$tpl->assign("total", $total);
$tpl->assign("format_total", number_format($total));
?>
而 Smarty 的样版就可以这样写: (number_format 修饰函式请到 Smarty 官方网页下载)
总金额:<{$total|number_format:""}> 元
php代码:
$total = 21000;
$tpl->assign("total", $total);
?>
所以在 Smarty 中我们只要指定一次变数,剩下的交给样版自行决定即可。这样瞭解了吗?这就是让样版自行决定变数呈现风貌的好处!
控制样版的内容
重覆的区块 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:
php代码:
利用 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}>
样版的写法如下:templates/test3.htm:
php代码:
样版 1 的写法如下:templates/test5_1.htm:
php代码:
样版 3 的写法如下:templates/test5_3.htm:这是样版 3 的内容
templates/test5_4.htm:<{$custom_var}>
这裡注意几个重点:1. 样版的位置都是以先前定义的 template_dir 为基准;2. 所有 include 进来的子样版中,其变数也会被解译。;3. include 中可以用「变数名称=变数内容」来指定引含进来的样版中所包含的变数,如同上面样版 4 的做法。