首页 > 开发 > PHP > 正文

使用PHP4中的 IntegratedTemplate类实现BLOCK功能

2024-05-04 22:56:30
字体:
来源:转载
供稿:网友
使用php 模板类进行编程很有好处,但是有时也会碰到一个问题,比如说输出一个表格,但是表格行数要到运行的时候才知道,如留言板、bbs、购物网站之类,经常会碰到这个问题。这时做美工的人无法决定在html文件中用几行表格,如果在php代码文件中写循环输出,又会让美工、php程序员看代码都不方便,美工的人会说,这里的表格哪里去了?我要修改表格的颜色背景之类怎么办?php程序员也会说,怎么这里突然有一个<tr>、<td>,做什么用?会嵌在html文件哪里?。
使用php模板类编程一般把这种不确定个数的html 元素当成一个“ block ”,对 bolck 的编程类似于在代码中写一个循环。在比较常用的php模板类(如 fasttemplate 和 phplib )都有这种功能。写嵌套的block 类似于写多重循环。现在举例说明在 php4 里面的 integratedtemplateextension 类中block 的编程方法,例子中用的是两重循环,外层block 是goodslist,里层block 是goodslistofsometype 。
基本设置:假设我们写的代码放在c:/testphp/php4/goodslist.htm 和 c:/testphp/html/goodslist.php 中。将c:/testphp/php4 在web server 上设成虚拟目录 /testphp 并且给与脚本执行权限,确认c:/testphp/html/goodslist.htm 无法通过远端浏览器访问。假定php4安装在c:/php4,在 php.ini 里面设置 include_path = ".;c:/php4/pear"

以下是goodslist.htm的内容:


<html>
<head>
<title>购物袋里的商品清单</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
body,p,br,td,tr,table { font-size: 9pt}
-->
</style>
</head>

<body bgcolor="#ffffff" text="#000000">
<table width="700" border="0" cellspacing="0" cellpadding="0" height="90">
<tr>
<td colspan="5">&nbsp;</td>
</tr>
<tr>
<td colspan="5">
<div align="center">{username},您的购物袋里有以下商品:</div>
</td>
</tr>
<tr>
<td colspan="5">
<hr>
</td>
</tr>
<tr>
<td width="52">&nbsp;</td>
<td width="302">商品种类</td>
<td width="302">商品名称</td>
<td width="299">商品价格</td>
<td width="47">&nbsp;</td>
</tr>
<!-- begin goodslist --> <!-- 说明: block 商品列表开始 -->
<tr bgcolor="#99ccff">
<td width="52">&nbsp;</td>
<td width="302"><font color="#cc0066">{type}</font></td>
<td width="302">&nbsp;</td>
<td width="299">&nbsp;</td>
<td width="47">&nbsp;</td>
</tr>
<!-- begin goodslistofsometype --> <!-- 说明: block 某一类商品列表开始 -->
<tr>
<td width="52">&nbsp;</td>
<td width="302">&nbsp;</td>
<td width="302">{goodsname}</td>
<td width="299">{price}</td>
<td width="47">&nbsp;</td>
</tr>
<!-- end goodslistofsometype --> <!-- 说明: block 某一类商品列表结束 -->
<!-- end goodslist --> <!-- 说明: block 商品列表结束 -->
<tr>
<td colspan="5">&nbsp;</td>
</tr>
</table>
<p>&nbsp;</p>
</body>
</html>


以下是php4代码文件 goodslist.php


<?php
require_once "html/itx.php";
// 以下是给变量赋值,在实际代码中可能从database中取得数据然后赋值
$username = "皮皮鲁";
$goodstypearray = array("家电", "书籍");
$goodsnamearray = array(array("三星显示器", "sony单放机","长虹彩电"),
array("c++ 编程思想", "java 2 高级开发指南", "visual basic 5 高级开发指南",
"flash 4 快闪劲爆网页", "设计模式可复用面向对象软件的基础" ));
$goodspricearray = array(array(1024, 302, 1024),
array(35, 62, 76, 66.5, 55 ));

//一般来说这种全局变量放在单独的一个文件中,便于维护
$html_code_file_root = "../html/";

$tpl = new integratedtemplateextension($html_code_file_root);
//指定要替换 tag 的 html 文件
$tpl->loadtemplatefile("goodslist.htm");

$tpl->setvariable("username",$username); //用户名称

//指定外层 block 名称
$tpl->setcurrentblock("goodslist");
我喜欢在循环前将循环次数单独赋值


$goodstypecount = count($goodstypearray);

//对外层block 进行循环
for ($i = 0 ; $i < $goodstypecount ; $i++)
{
$tpl->setvariable("type",$goodstypearray[$i]); //货物种类

//指定里层block 名称
$tpl->setcurrentblock("goodslistofsometype");

$goodsnamearraycount = count( $goodsnamearray[$i] );

//对里层block 进行循环
for($j = 0; $j < $goodsnamearraycount; $j++ )
{
//替换html 文件中的 tag
$tpl->setvariable(array ("goodsname" =>$goodsnamearray[$i][$j],
"price" => $goodspricearray[$i][$j]));
$tpl->parsecurrentblock(); //这里也可以写 $tpl->parse("goodslistofsometype");
}
$tpl->parse("goodslist"); //结束外层 block
}

//输出替换后的 html
$tpl->show();
?>


菜鸟学堂:
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表