用了smarty,tp过后,也想了解了解其模板技术是怎么实现,于是写一个简单的模板类,大致就是读取模板文件->替换模板文件的内容->保存或者静态化
tpl.class.php主要解析
assign 方法实现
/** * 模板赋值操作 * @param mixed $tpl_var 如果是字符串,就作为数组索引,如果是数组,就循环赋值 * @param mixed $tpl_value 当$tpl_var为string时的值,默认为 null */ public function assign($tpl_var,$tpl_value=null){ if(is_array($tpl_var) && count($tpl_var) > 0){ foreach ($tpl_var as $k => $v) { $this->tpl_vars[$k] = $v; } }elseif($tpl_var){ $this->tpl_vars[$tpl_var] = $tpl_value; } }
fetch 方法实现
/** * 生成编译文件 * @param string $tplFile 模板路径 * @param string $comFile 编译路径 * @return string */ private function fetch($tplFile,$comFile){ //判断编译文件是否需要重新生成(编译文件是否存在或者模板文件修改时间大于编译文件的修改时间) if(!file_exists($comFile) || filemtime($tplFile) > filemtime($comFile)){ //编译,此处也可以使用ob_start()进行静态化 $content = $this->tplReplace(file_get_contents($tplFile)); file_put_contents($comFile, $content); } }
简单编译方法:按照规则进行正则替换
/** * 编译文件 * @param string $content 待编译的内容 * @return string */ private function tplReplace($content){ //转义左右定界符 正则表达式字符 $left = preg_quote($this->left_delimiter,'/'); $right = preg_quote($this->right_delimiter,'/'); //简单模拟编译 变量 $pattern = array( //例如{$test} '/'.$left.'\$([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)'.$right.'/i' ); $replace = array( '<?php echo $this->tpl_vars[\'${1}\']; ?>' ); //正则处理 return preg_replace($pattern, $replace, $content); }
display = fetch+echo
/** * 输出内容 * @param string $fileName 模板文件名 */ public function display($fileName){ //模板路径 $tplFile = $this->template_dir.'/'.$fileName; //判断模板是否存在 if(!file_exists($tplFile)){ $this->errorMessage = '模板文件不存在'; return false; } //编译后的文件 $comFile = $this->compile_dir.'/'.md5($fileName).'.php'; $this->fetch($tplFile,$comFile); include $comFile; }
其他属性
//模板文件存放位置 private $template_dir = 'templates'; //编译文件存放位置 private $compile_dir = 'compiles'; //左定界符 private $left_delimiter = '{'; //右定界符 private $right_delimiter = '}'; //内部临时变量,存储用户赋值 private $tpl_vars = array(); //错误信息 private $errorMessage = ''; /** * 修改类属性的值 * @param array $configs 需要修改的相关属性及值 * @return bool */ public function setConfigs(array $configs){ if(count($configs) > 0){ foreach ($configs as $k => $v) { if(isset($this->$k)) $this->$k = $v; } return true; } return false; }
测试
模板文件 testTpl.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>test_tpl_demo</title> </head> <body> {$name}:{$age}:{$message} </body> </html> 运行文件 test_tpl.php <?php require 'Tpl.class.php'; $tpl = new Tpl(); $tplarr = array( 'name'=>'waited', 'age'=>'100' ); $tpl->assign($tplarr); $tpl->assign('message','this is a demo'); $tpl->display('testTpl.html'); ?>
输出:waited:100:this is a demo
生成编译文件:972fa4d270e295005c36c1dbc7e6a56c.php
以上就是本文的全部内容,希望对大家的学习有所帮助。

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
