最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

網(wǎng)友原創(chuàng)的PHP模板類代碼

 更新時間:2008年09月07日 10:29:36   作者:  
學(xué)習(xí)php模板的朋友,可以參考下

復(fù)制代碼 代碼如下:

<?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模板用法:
復(fù)制代碼 代碼如下:

$Mdl = new Lightpage_Template();
$Mdl->Tpl_Header = 'zzz';
$Mdl->Tpl_Footer = '';
$Mdl->Tpl_Parsing = '';
$Mdl->Tpl_Template = 'list.html';
echo $Mdl->Parse_Template();

相關(guān)文章

最新評論

安阳县| 米林县| 辛集市| 深州市| 枝江市| 安乡县| 禹州市| 长丰县| 万载县| 望城县| 安乡县| 盘山县| 泊头市| 临夏县| 涪陵区| 克什克腾旗| 平安县| 栾川县| 清苑县| 吉木乃县| 中山市| 静乐县| 罗田县| 延长县| 呼伦贝尔市| 抚宁县| 望江县| 新竹市| 体育| 盱眙县| 辰溪县| 甘洛县| 曲阳县| 西乌珠穆沁旗| 尖扎县| 白银市| 东光县| 法库县| 综艺| 区。| 达州市|