JTemplate.class.php
001
002
/**
003
* @author 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)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
* @return string 替换过后的内容
082
*/
083
private function template_replace($content){
084
$orginArray = array(
085
'//s',
086
'//s',
087
'/(.+?)/s',
088
'//s',
089
'//s',
090
'//s',
091
'//s',
092
'//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
'',
103
'$$3){$countLoop++;?>',
104
'$1',
105
'',
106
'',
107
'',
108
'',
109
'',
110
'',
111
'',
112
'templateDir.'/$1";?>',
113
'',
114
'',
115
'',
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
* @return 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 = '
145
$stringHtml .= 'Error information:
';
146
$stringHtml .= '';
147
$stringHtml .= $content;
148
$stringHtml .= '';
149
$stringHtml .= '
150
exit($stringHtml);
151
}
152
}
153
?>
index.php
view sourceprint?
01
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
?>
作者:袁家伟

phpientifiesauser'ssessionusessessionSessionCookiesAndSessionIds.1)whiwSession_start()被称为,phpgeneratesainiquesesesessionIdStoredInacookInAcookInamedInAcienamedphpsessidontheuser'sbrowser'sbrowser.2)thisIdAllowSphptptpptpptpptpptortoreTessessionDataAfromtheserverMtheserver。

PHP会话的安全可以通过以下措施实现:1.使用session_regenerate_id()在用户登录或重要操作时重新生成会话ID。2.通过HTTPS协议加密传输会话ID。3.使用session_save_path()指定安全目录存储会话数据,并正确设置权限。

phpsessionFilesArestoredIntheDirectorySpecifiedBysession.save_path,通常是/tmponunix-likesystemsorc:\ windows \ windows \ temponwindows.tocustomizethis:tocustomizEthis:1)useession_save_save_save_path_path()

ToretrievedatafromaPHPsession,startthesessionwithsession_start()andaccessvariablesinthe$_SESSIONarray.Forexample:1)Startthesession:session_start().2)Retrievedata:$username=$_SESSION['username'];echo"Welcome,".$username;.Sessionsareserver-si

利用会话构建高效购物车系统的步骤包括:1)理解会话的定义与作用,会话是服务器端的存储机制,用于跨请求维护用户状态;2)实现基本的会话管理,如添加商品到购物车;3)扩展到高级用法,支持商品数量管理和删除;4)优化性能和安全性,通过持久化会话数据和使用安全的会话标识符。

本文讨论了PHP中的crypt()和password_hash()之间的差异,以进行密码哈希,重点介绍其实施,安全性和对现代Web应用程序的适用性。

文章讨论了通过输入验证,输出编码以及使用OWASP ESAPI和HTML净化器之类的工具来防止PHP中的跨站点脚本(XSS)。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

Dreamweaver CS6
视觉化网页开发工具

mPDF
mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),

适用于 Eclipse 的 SAP NetWeaver 服务器适配器
将Eclipse与SAP NetWeaver应用服务器集成。

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

MinGW - 适用于 Windows 的极简 GNU
这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。