收 藏 投 稿 繁 体 RSS 
站长吧-中国站长学习与交流的网站
首 页 运 营 学 院 建 站 论 坛
Web master8.net  
 网站运营  
  欢迎在本站发布信息,在线投递稿件请点这里。编辑QQ:4908220,欢迎联系交流。
业界动态 创业故事 推广研究 策划盈利 电子商务 企业平台
  站长工具
SEO查询 Whois查询 Pr查询 域名查询 IP查询 网页编辑器
 建站服务  
  如有建站意向,请尽快联系我们,以便安排时间... 建站服务 QQ4908220 QQ:4908220
作品展示 服务范围 服务流程 服务报价 联系方式 付款方式
文章正文  » 您的当前位置: 首页 >> 学院 >> 程序开发 >> PHP
一个易用的模板类
  来源:互联网 | 时间:2006-03-08 | 浏览:   相关评论 | 报告错误 | 发布文章
【字号: | | 】 【背景色 杏仁黄 秋叶褐 胭脂红 芥末绿 天蓝 雪青 灰 银河白(默认色)

这几天好像不少人都关心用模板的问题。在这里我就把自己的模类贴出来。

我这个类是是继承于phplib7.0的template,并修改相关的程序。做了简单的优化,其实phplib7.0的模板处理比fasttemplate的来得快,经多次test.

PHP:

<?php
if(!defined("__TEMPLATE_H_PHP__")){
define("__TEMPLATE_H_PHP__","template.h.php");
/******************** CODE START ********************/

//PHP类库:template.h.php
//运行环境:PHP4.0
//修改时间:2002-08-01
//最后修改:stangly.wrong
//类库简介:模板的提取显示的类
/////////////////////////////////////////////////////////////

//类名:模板基类 Template_base
//功能:模板具体操作类。
class Template_base {
var
$classname = "Template_base";

/* if set, echo assignments */
var $debug = false;

/* $file[handle] = "filename"; */
var $file = array();

/* relative filenames are relative to this pathname */
var $root = "";

/* $varkeys[key] = "key"; $varvals[key] = "value"; */
var $varkeys = array();
var
$varvals = array();

/* "remove" => remove undefined variables
* "comment" => replace undefined variables with comments
* "keep" => keep undefined variables
*/
var $unknowns = "remove";

/* "yes" => halt, "report" => report error, continue, "no" => ignore error quietly */
var $halt_on_error = "yes";

/* last error message is retained here */
var $last_error = "";


/***************************************************************************/
/* public: Constructor.
* root: template directory.
* unknowns: how to handle unknown variables.
*/
function Template_base($root = ".", $unknowns = "remove") {
$this->set_root($root);
$this->set_unknowns($unknowns);
}

/* public: setroot(pathname $root)
* root: new template directory.
*/
function set_root($root) {
if (!
is_dir($root)) {
$this->halt("set_root: $root is not a directory.");
return
false;
}

$this->root = $root;
return
true;
}

/* public: set_unknowns(enum $unknowns)
* unknowns: "remove", "comment", "keep"
*
*/
function set_unknowns($unknowns = "keep") {
$this->unknowns = $unknowns;
}

/* public: set_file(array $filelist)
* filelist: array of handle, filename pairs.
*
* public: set_file(string $handle, string $filename)
* handle: handle for a filename,
* filename: name of template file
*/
function set_file($handle, $filename = "") {
if (!
is_array($handle)) {
if (
$filename == "") {
$this->halt("set_file: For handle $handle filename is empty.");
return
false;
}
$this->file[$handle] = $this->filename($filename);
} else {
reset($handle);
while(list(
$h, $f) = each($handle)) {
$this->file[$h] = $this->filename($f);
}
}
}

/* public: set_block(string $parent, string $handle, string $name = "")
* extract the template $handle from $parent,
* place variable {$name} instead.
*/
function set_block($parent, $handle, $name = "") {
if (!
$this->loadfile(
分页 [1] [2] [3] [4] [5] [6] [7] [8]
master8
  • 上一篇:大家关心的问题,开发短信程序(java)
  • 下一篇:Skype出台海外赔偿方案

  • 我要投稿  打印本文  推荐本文  加入收藏  返回顶部  关闭窗口
    搜模板(www.somoban.com) 原创网站模板交易平台
    阿里妈妈再掀疯狂采购风,网站广告位严重告急,急召天下站长
    基于PHP+MySQL的整站、模块、插件开发等或者按需求实现相应功能;
基于各PHP主流建站系统CMS,BBS,BLOG等的模板定制,完全手写代码;
整站数据迁移或备份恢复;网页代码优化、重构;整站常规SEO优化;网站技术支持;
点击了解详情...
    站长论坛
    • 验证码: