php模板怎么加授权代码,网友原创的PHP模板类代码

学习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();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值