网友原创的PHP模板类代码


Posted in PHP onSeptember 07, 2008
<?php 
class Lightpage_Template { var $Tpl_Header; 
var $Tpl_Footer; 
var $Tpl_Parsing; 
var $Tpl_Template; 
var $Tpl_Dirname; 
var $Tpl_Parse_String; 
var $Tpl_Parse_Array; 
var $Tpl_Result; 
function __construct() { 
$this->Tpl_Header = NULL; 
$this->Tpl_Footer = NULL; 
$this->Tpl_Parsing = array(); 
$this->Tpl_Template = 'list.html'; 
$this->Tpl_ToParse = NULL; 
$this->Tpl_Parse_String = array(); 
$this->Tpl_Parse_Array = array(); 
$this->Tpl_Result = NULL; 
return true; 
} 
function Parse_Template() { 
$this->Tpl_Parse_String = array(); 
$this->Tpl_Parse_Array = array(); 
if($this->Tpl_Header!=NULL) { array_push($this->Tpl_Parse_String,$this->Tpl_Header);array_push($this->Tpl_Parse_Array,'{header}'); } 
if($this->Tpl_Footer!=NULL) { array_push($this->Tpl_Parse_String,$this->Tpl_Footer);array_push($this->Tpl_Parse_Array,'{footer}'); } 
if(count($this->Tpl_Parsing)!=1) { 
foreach($this->Tpl_Parsing as $Tpl_Key => $Tpl_Value) { 
array_push($this->Tpl_Parse_String,$Tpl_Value); 
array_push($this->Tpl_Parse_Array,'{'.$Tpl_Key.'}'); 
} 
} 
if($this->Tpl_Template!=NULL && $this->Tpl_ToParse==NULL) { 
$this->Tpl_ToParse = file_get_contents(root.'./Templates/'.$this->Tpl_Template); 
} 
$this->Tpl_Result = str_replace($this->Tpl_Parse_Array,$this->Tpl_Parse_String,$this->Tpl_ToParse); 
return $this->Tpl_Result; 
} 
} 
?>

php模板用法:
$Mdl = new Lightpage_Template(); 
$Mdl->Tpl_Header = 'zzz'; 
$Mdl->Tpl_Footer = ''; 
$Mdl->Tpl_Parsing = ''; 
$Mdl->Tpl_Template = 'list.html'; 
echo $Mdl->Parse_Template();
PHP 相关文章推荐
一个PHP+MSSQL分页的例子
Oct 09 PHP
PHP 5.3.0 安装分析心得
Aug 07 PHP
php 编写安全的代码时容易犯的错误小结
May 20 PHP
php array_map()数组函数使用说明
Jul 12 PHP
PHP变量内存分配问题记录整理
Nov 27 PHP
php利用curl抓取新浪微博内容示例
Apr 27 PHP
浅析PHP程序设计中的MVC编程思想
Jul 28 PHP
PHP中file_get_contents函数抓取https地址出错的解决方法(两种方法)
Sep 22 PHP
详解PHP中的null合并运算符
Dec 30 PHP
php格式文件打开的四种方法
Feb 24 PHP
Laravel框架Auth用户认证操作实例分析
Sep 29 PHP
php5.3/5.4/5.5/5.6/7常见新增特性汇总整理
Feb 27 PHP
php 特殊字符处理函数
Sep 05 #PHP
php include,include_once,require,require_once
Sep 05 #PHP
php生成随机数或者字符串的代码
Sep 05 #PHP
PHP通用分页类page.php[仿google分页]
Aug 31 #PHP
php将数据库中的电话号码读取出来并生成图片
Aug 31 #PHP
PHP生成HTML静态页面实例代码
Aug 31 #PHP
php array_slice函数的使用以及参数详解
Aug 30 #PHP
You might like
preg_match_all使用心得分享
2014/01/31 PHP
php打包压缩文件之ZipArchive方法用法分析
2016/04/30 PHP
php的单例模式及应用场景详解
2021/02/27 PHP
JavaScript 实现模态对话框 源代码大全
2009/05/02 Javascript
JS面向对象编程 for Cookie
2010/09/19 Javascript
javascript禁用键盘功能键让右击及其他键无效
2013/10/09 Javascript
jquery处理页面弹出层查询数据等待操作实例
2015/03/25 Javascript
移动端翻页插件dropload.js(支持Zepto和jQuery)
2016/07/27 Javascript
css和js实现弹出登录居中界面完整代码
2017/11/26 Javascript
jQuery实现的两种简单弹窗效果示例
2018/04/18 jQuery
jQuery实现的简单获取索引功能示例
2018/06/04 jQuery
详解vue中axios请求的封装
2019/04/08 Javascript
layui使用button按钮 点击出现弹层 弹层中加载表单的实例
2019/09/04 Javascript
[01:02:38]DOTA2-DPC中国联赛定级赛 LBZS vs Phoenix BO3第二场 1月10日
2021/03/11 DOTA
Python中的进程分支fork和exec详解
2015/04/11 Python
python中子类调用父类函数的方法示例
2017/08/18 Python
Python解决线性代数问题之矩阵的初等变换方法
2018/12/12 Python
Python字符串的全排列算法实例详解
2019/01/07 Python
解决pycharm remote deployment 配置的问题
2019/06/27 Python
对Django 中request.get和request.post的区别详解
2019/08/12 Python
pyqt5 QScrollArea设置在自定义侧(任何位置)
2019/09/25 Python
tensorflow之获取tensor的shape作为max_pool的ksize实例
2020/01/04 Python
python实现人工蜂群算法
2020/09/18 Python
澳大利亚领先的折扣药房:Chemist Direct(有中文站)
2018/11/24 全球购物
英国蜡烛、蜡烛配件和家居香氛购买网站:Yankee Candle
2018/12/12 全球购物
Linux中如何用命令创建目录
2015/01/12 面试题
出国考察邀请函
2014/01/21 职场文书
数学教学随笔感言
2014/02/17 职场文书
读书活动总结范文
2014/04/26 职场文书
航海技术专业毕业生推荐信
2014/07/09 职场文书
涪陵白鹤梁导游词
2015/02/09 职场文书
煤矿百日安全活动总结
2015/05/07 职场文书
推广普通话的宣传语
2015/07/13 职场文书
2016秋季运动会前导词
2015/11/25 职场文书
面试必问:圣杯布局和双飞翼布局的区别
2021/05/13 HTML / CSS
基于Java的MathML转图片的方法(示例代码)
2021/06/23 Java/Android