2015-05-27
JTemplate.class.php
001
<?php
002
/**
003
* <a href="http://my.oschina.net/arthor" target="_blank" rel="nofollow">@author</a> Jiawei
004
* @Completed in 2012-6-29 0:23
005
*/
006
class JTemplate{
007
//通过assign函数传入的变量临时存放数组
008
private $templateVar = array();
009
//模板目录
010
private $templateDir = '';
011
//编译目录
012
private $templateCompileDir = '';
013
014
private $fileName = '';
015
/**
016
* 构造函数
017
* @param string $templateDir 模板目录
018
* @param string $templateComplieDir 模板编译目录
019
*/
020
public function __construct($templateDir,$templateComplieDir){
021
$this->templateDir = $templateDir;
022
$this->templateCompileDir = $templateComplieDir;
023
}
024
/**
025
* 显示模板
026
* @param string $fileName 模板文件名
027
*/
028
public function display($fileName){
029
$this->fileName = $fileName;
030
if(file_exists($this->templateDir.'/'.$this->fileName)){
031
$compileFileName = $this->templateCompileDir.'/'.$this->file_safe_name().'.php';
032
if(!file_exists($compileFileName) || filemtime($compileFileName)< filemtime($this->templateDir.'/'.$this->fileName)){
033
$this->del_old_file();
034
$this->compile();
035
}
036
extract($this->templateVar);
037
include $compileFileName;
038
}else{
039
$this->error('Sorry,the template file '.$this->fileName.' does not exist!!');
040
}
041
}
042
/**
043
* 获取编译文件名
044
*/
045
private function get_compile_file(){
046
$compileFile = explode('.',$this->fileName);
047
unset($compileFile[count($compileFile)-1]);
048
return implode('.',$compileFile);
049
}
050
/**
051
* 编译
052
*/
053
private function compile(){
054
$fileHandle = @fopen($this->templateDir.'/'.$this->fileName, 'r');
055
while(!feof($fileHandle)){
056
$fileContent = fread($fileHandle,1024);
057
}
058
fclose($fileHandle);
059
$fileContent = $this->template_replace($fileContent);
060
//$compileFile = $this->get_compile_file($fileName);
061
$fileHandle = @fopen($this->templateCompileDir.'/'.$this->file_safe_name().'.php','w');
062
if($fileHandle){
063
fwrite($fileHandle, $fileContent);
064
fclose($fileHandle);
065
}else{
066
$this->error('Sorry,Compile dir can not write!');
067
}
068
}
069
/**
070
* 模板传值
071
* @param string $valueName 模板中使用的变量名
072
* @param $value 变量值
073
*/
074
public function assign($valueName,$value){
075
$this->templateVar[$valueName] = $value;
076
}
077
078
/**
079
* 模板正则替换
080
* @param string $content 替换内容
081
* <a href="http://my.oschina.net/u/556800" target="_blank" rel="nofollow">@return</a> string 替换过后的内容
082
*/
083
private function template_replace($content){
084
$orginArray = array(
085
'/<!--loop/s+/$(/w+)/s+/$(/w+)-->/s',
086
'/<!--loop/s+/$(/w+)/s+/$(/w+)/s+/$(/w+)-->/s',
087
'/<!--elseloop-->(.+?)<!--endloop-->/s',
088
'/<!--endloop-->/s',
089
'/<!--if/s+/((.+?)/)-->/s',
090
'/<!--endif-->/s',
091
'/<!--elseif/s+/((.+?)/)-->/s',
092
'/<!--else-->/s',
093
'//{P:(.+?)/:}/s',
094
'//{C:(/w+)/}/s',
095
'//{I:(.+?)/}/s',
096
'//{F:(.+?)/}/s',
097
'//{EF:(.+?)/}/s',
098
'//{([a-zA-Z0-9_/[/]/'/"/$/./x7f-/xff]+)/}/s',
099
);
100
101
$changeArray = array(
102
'<?php if(!empty($$1)&&is_array($$1)){$countLoop = 1;foreach($$1 as $$2){$countLoop++;?>',
103
'<?php if(!empty($$1)&&is_array($$1)){$countLoop = 1;foreach($$1 as $$2=>$$3){$countLoop++;?>',
104
'<?php }if(!empty($countLoop))$countLoop--;}else{?>$1<?php }?>',
105
'<?php }if(!empty($countLoop))$countLoop--;}?>',
106
'<?php if($1){?>',
107
'<?php }?>',
108
'<?php }elseif($1){?>',
109
'<?php }else{?>',
110
'<?php $1?>',
111
'<?php echo $1;?>',
112
'<?php include_once "'.$this->templateDir.'/$1";?>',
113
'<?php $1;?>',
114
'<?php echo $1;?>',
115
'<?php echo $$1;?>',
116
);
117
return $repContent=preg_replace($orginArray,$changeArray,$content);
118
}
119
/**
120
* 删除旧文件
121
*/
122
private function del_old_file(){
123
$compileFile = $this->get_compile_file($this->fileName);
124
$files = glob($this->templateCompileDir.'/'.$compileFile.'*.php');
125
// print_r($files);
126
if($files){
127
@unlink($files[0]);
128
}
129
}
130
/**
131
* 编译文件名安全处理方法
132
* <a href="http://my.oschina.net/u/556800" target="_blank" rel="nofollow">@return</a> string 返回编译文件名
133
*/
134
private function file_safe_name(){
135
$compileFile = $this->get_compile_file($this->fileName);
136
return $compileFile.filemtime($this->templateDir.'/'.$this->fileName);
137
}
138
139
/**
140
* 错误输出函数
141
* @param string $content 错误输出信息
142
*/
143
private function error($content){
144
$stringHtml = '<div style="width:780px;height:auto;padding:10px;border:1px solid #CCC;margin:0 auto;">';
145
$stringHtml .= 'Error information:<br />';
146
$stringHtml .= '<font color="red">';
147
$stringHtml .= $content;
148
$stringHtml .= '</font>';
149
$stringHtml .= '</div>';
150
exit($stringHtml);
151
}
152
}
153
?>
index.php
view sourceprint?
01
<?php
02
/**
03
* @author Jiawei
04
*/
05
include_once 'JTemplate/JTemplate.class.php';
06
$template = new JTemplate('template','compile');
07
$a = array('a','b','c','d');
08
define('_CORE_','aaa');
09
$template->assign('a', $a);
10
$template->display('index.html');
11
?>
作者:袁家伟
1
CI框架连接数据库配置操作以及多数据库操作
09-05
2
asp 简单读取数据表并列出来 ASP如何快速从数据库读取大量数据
05-17
3
C语言关键字及其解释介绍 C语言32个关键字详解
04-05
4
C语言中sizeof是什么意思 c语言里sizeof怎样用法详解
04-26
5
最简单的asp登陆界面代码 asp登陆界面源代码详细介绍
04-12
6
PHP中的魔术方法 :__construct, __destruct , __call, __callStatic,__get, __set, __isset, __unset , __sleep,
09-05
7
PHP中的(++i)前缀自增 和 (i++)后缀自增
09-05
8
PHP中include和require区别之我见
09-05
常用dos命令及语法
2014-09-27
将视频设置为Android手机开机动画的教程
2014-12-11
php递归返回值的问题
2014-09-05
如何安装PHPstorm并配置方法教程 phpstorm安装后要进行哪些配置
2017-05-03
java中的info是什么意思
2022-03-24
PHP 教程之如何使用BLOB存取图片信息实例
2014-09-05
IcePHP框架中的快速后台中的通用CRUD功能框架
2014-09-05
单片机编程好学吗?单片机初学者怎样看懂代码
2022-03-21
PHP数组函数array
2014-09-05
学ug编程如何快速入门?
2022-03-17
魂斗罗归来最新版本下载v1.74.125.3955 安卓手机版
射击枪战 1.94G
下载胜利女神妮姬国际服最新版下载v134.14.8 安卓官方版
射击枪战 123.0M
下载com.proximabeta.nikke手游(胜利女神nikke)下载v134.14.8 安卓版国际服
卡牌对战 123.0M
下载部落冲突皇室战争国际服下载v110449005 安卓正版
策略塔防 839.2M
下载宝宝上厕所宝宝巴士下载v9.87.00.01 安卓官方版
其它手游 105.0M
下载宝宝巴士奇妙世界美食小游戏下载v9.87.00.01 安卓版
其它手游 119.3M
下载宝宝手工零食宝宝巴士游戏下载v9.87.00.01 安卓最新版
其它手游 90.8M
下载逍遥情缘手游折扣平台下载v1.1.8 安卓版
其它手游 1.02G
下载海岛奇兵taptap下载v60.2.1 安卓版
下载
海滨消消乐2025春节版下载v1.119 安卓新春版
下载
海岛奇兵4399官方版下载v60.2.1 安卓最新版
下载
草花版海岛奇兵最新版下载v60.2.1 安卓版
下载
途游斗地主比赛版小游戏下载v3.5.0710 安卓版
下载
遇见你的猫ios版下载v2.15.0 iphone版
下载
网易uno手游下载v1.15.1553 安卓最新版
下载
宝宝冰淇淋工厂小游戏下载v9.87.00.01 安卓版
下载