search
HomeBackend DevelopmentPHP TutorialA brief analysis of zuitu group purchase template engine_PHP tutorial
A brief analysis of zuitu group purchase template engine_PHP tutorialJul 20, 2016 am 11:13 AM
hostFunctionGroup buyenginedocumentfriendtemplateofparse

     接触过最土的朋友应该很熟悉  最土模板解析功能主要由 文件完成 ,就是通过正则的替换,捕获来完成而已,与smarty的原理类似。下面分析下他的正则替换。

         在template.php文件中有这段代码

 

<span  1</span> <span function</span> __parse(<span $tFile</span>,<span $cFile</span><span ) {
</span><span  2</span> 
<span  3</span>     <span $fileContent</span> = <span false</span><span ;
</span><span  4</span> 
<span  5</span>     <span if</span>(!(<span $fileContent</span> = <span file_get_contents</span>(<span $tFile</span><span )))
</span><span  6</span>         <span return</span> <span false</span><span ;
</span><span  7</span> 
<span  8</span>     <span $fileContent</span> = <span preg_replace</span>( '/^(\xef\xbb\xbf)/', '', <span $fileContent</span> ); <span //</span><span EFBBBF   </span>
<span  9</span>     <span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\\\$\{(.+?)\}\s*\-\-\>/ies", "__replace('<?php \\1; ?>')", <span $fileContent</span><span );
</span><span 10</span>     <span $fileContent</span> = <span preg_replace</span>("/\{(\\\$[a-zA-Z0-9_\[\]\\\ \-\'\,\%\*\/\.\(\)\>\'\"\$\x7f-\xff]+)\}/s", "<?php echo \\1; ?>", <span $fileContent</span><span );
</span><span 11</span>     <span $fileContent</span> = <span preg_replace</span>("/\\\$\{(.+?)\}/ies", "__replace('<?php echo \\1; ?>')", <span $fileContent</span><span );
</span><span 12</span>     <span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{else\s*if\s+(.+?)\}\s*\-\-\>/ies", "__replace('<?php } else if(\\1) { ?>')", <span $fileContent</span><span );
</span><span 13</span>     <span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{elif\s+(.+?)\}\s*\-\-\>/ies", "__replace('<?php } else if(\\1) { ?>')", <span $fileContent</span><span );
</span><span 14</span>     <span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{else\}\s*\-\-\>/is", "<?php } else { ?>", <span $fileContent</span><span );
</span><span 15</span> 
<span 16</span>     <span for</span>(<span $i</span> = 0; <span $i</span> < 5; ++<span $i</span><span ) {
</span><span 17</span>         <span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{loop\s+(\S+)\s+(\S+)\s+(\S+)\s*\}\s*\-\-\>(.+?)\<\!\-\-\s*\{\/loop\}\s*\-\-\>/ies", "__replace('<?php if(is_array(\\1)){foreach(\\1 AS \\2=>\\3) { ?>\\4<?php }}?>')", <span $fileContent</span><span );
</span><span 18</span>         <span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{loop\s+(\S+)\s+(\S+)\s*\}\s*\-\-\>(.+?)\<\!\-\-\s*\{\/loop\}\s*\-\-\>/ies", "__replace('<?php   if(is_array(\\1)){foreach(\\1 AS \\2) { ?>\\3<?php }}?>')", <span $fileContent</span><span );
</span><span 19</span>         <span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{if\s+(.+?)\}\s*\-\-\>(.+?)\<\!\-\-\s*\{\/if\}\s*\-\-\>/ies", "__replace('<?php if(\\1){?>\\2<?php }?>')", <span $fileContent</span><span );
</span><span 20</span>     
<span 21</span> <span     }
</span><span 22</span>     <span //</span><span Add for call <!--{include othertpl}--></span>
<span 23</span>     <span $fileContent</span> = <span preg_replace</span>("#<!--\s*{\s*include\s+([^\{\}]+)\s*\}\s*-->#i", '<?php include template("\\1");?>', <span $fileContent</span><span );
</span><span 24</span> 
<span 25</span>     <span //</span><span Add value namespace</span>
<span 26</span>     <span if</span>(!<span file_put_contents</span>(<span $cFile</span>,<span $fileContent</span><span ))    
</span><span 27</span>         <span return</span> <span false</span><span ;
</span><span 28</span>     
<span 29</span> 
<span 30</span>     <span return</span> <span true</span><span ;
</span><span 31</span> <span }
</span><span 32</span> 
<span 33</span> <span function</span> __replace(<span $string</span><span ) {
</span><span 34</span>     <span return</span> <span str_replace</span>('\"', '"', <span $string</span><span );
</span><span 35</span> }

现在对正则替换进行分析:

第8行

<span $fileContent</span> = <span preg_replace</span>( '/^(\xef\xbb\xbf)/', '', <span $fileContent</span> ); 

是过滤掉windows平台下utf8文件的特殊字符 ï  » ¿

第九行

<span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\\\$\{(.+?)\}\s*\-\-\>/ies", "__replace('<?php \\1; ?>')", <span $fileContent</span>);

规则浅析:

 

结合模式修正

 

i

 

替换后的内容)

 

s

 

  在{}里执行任何php代码


 <span $fileContent</span> = <span preg_replace</span>("/\{(\\\$[a-zA-Z0-9_\[\]\\\ \-\'\,\%\*\/\.\(\)\>\'\"\$\x7f-\xff]+)\}/s", "<?php echo \\1; ?>", <span $fileContent</span>);

 


 

用于显示内容

第11行

<span $fileContent</span> = <span preg_replace</span>("/\\\$\{(.+?)\}/ies", "__replace('<?php echo \\1; ?>')", <span $fileContent</span>);

 

eg: ${ $a}对应 

第12行

 <span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{else\s*if\s+(.+?)\}\s*\-\-\>/ies", "__replace('<?php } else if(\\1) { ?>')", <span $fileContent</span>);

    转为

 

<span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{elif\s+(.+?)\}\s*\-\-\>/ies", "__replace('<?php } else if(\\1) { ?>')", <span $fileContent</span>);

 

  转为  

 

<span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{else\}\s*\-\-\>/is", "<?php } else { ?>", <span $fileContent</span>);

 

模板里    转为  

第17行

 <span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{loop\s+(\S+)\s+(\S+)\s+(\S+)\s*\}\s*\-\-\>(.+?)\<\!\-\-\s*\{\/loop\}\s*\-\-\>/ies", "__replace('<?php if(is_array(\\1)){foreach(\\1 AS \\2=>\\3) { ?>\\4<?php }}?>')", <span $fileContent</span>);

$v) { ?>

>

 

第18行与第17行差不多就是少了$k其他完全一样

 

 

 

第19行

<span $fileContent</span> = <span preg_replace</span>("/\<\!\-\-\s*\{if\s+(.+?)\}\s*\-\-\>(.+?)\<\!\-\-\s*\{\/if\}\s*\-\-\>/ies", "__replace('<?php if(\\1){?>\\2<?php }?>')", <span $fileContent</span>);

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/440332.htmlTechArticleFriends who have been in contact with Tutu should be familiar with the Tutu template parsing function, which is mainly completed by files, that is, through regular replacement , just to complete the capture, similar to the principle of smarty. Analysis below...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
良久团购是一个什么样的平台良久团购是一个什么样的平台Jul 29, 2022 pm 02:48 PM

良久团购是一个全球供应链平台,在销售端,依靠打造私域流量,以团购的形式,将物美价廉的产品给到消费者。良久团购采用的是F2C+社群团购模式;良久团购拥有大量的合作经销商,而每个合作的经销商背后都建有百人成团的微信群,里面沉淀了庞大的消费客户群体,因此良久团购拥有一条庞大的消费管道,可以直接对接产品源头。

抖音团购怎么上团购链接抖音团购怎么上团购链接Apr 24, 2024 am 11:11 AM

1、注册抖音商家账号:作为商家,需要先在抖音平台上注册一个商家账号,完成相关资料填写和认证。2、创建团购活动:在商家后台,找到团购活动相关设置,填写商品信息、团购价、优惠力度等,设定活动规则。3、获取团购链接:在团购活动创建成功后,系统会生成一个团购链接和二维码,商家可以将链接或二维码分享给用户,让用户通过点击或扫描参与团购。4、宣传推广:商家可以通过抖音平台的广告、直播、短视

PPT蒙版要怎么添加PPT蒙版要怎么添加Mar 20, 2024 pm 12:28 PM

关于PPT蒙版,很多人肯定对它很陌生,一般人做PPT不会将它吃透,而是凑活着可以做出来自己喜欢的就行,所以很多人都不知道PPT蒙版到底是什么意思,也不知道这个蒙版有什么作用,甚至更不知道它可以让图片变得不再那么单调,想要学习的小伙伴们快来了学习学习,为你的PPT图片上添上点吧PPT蒙版吧,让它不再单调了。那么,PPT蒙版要怎么添上呢?请往下看。1.首先我们打开PPT,选择一张空白的图片,之后右键点击【设置背景格式】,纯色选择颜色就行。2.点击【插入】,艺术字,输入字3.点击【插入】,点击【形状】

C++ 模板特化的影响对于函数重载和重写C++ 模板特化的影响对于函数重载和重写Apr 20, 2024 am 09:09 AM

C++模板特化影响函数重载和重写:函数重载:特化版本可提供特定类型不同的实现,从而影响编译器选择调用的函数。函数重写:派生类中的特化版本将覆盖基类中的模板函数,影响派生类对象调用函数时的行为。

如何在 OneNote 中使用模板来提高工作效率如何在 OneNote 中使用模板来提高工作效率Apr 30, 2023 am 11:31 AM

您是否知道使用模板可以提高记笔记的速度以及捕捉重要想法的效率?OneNote有一套现成的模板供您使用。最好的部分是您还可以根据需要设计模板。无论您是学生、企业战士还是从事创造性工作的自由职业者。OneNote模板可用于以适合您风格的结构和格式记录重要笔记。模板可以是记笔记过程的大纲。业余爱好者只是做笔记,专业人士则在模板的帮助下通过结构良好的笔记做笔记并从中汲取联系。让我们看看如何在OneNote中使用模板。使用默认OneNote模板第1步:按键盘上的Windows+R。键入Oneno

PHP电子邮件模板:定制化和个性化您的邮件内容。PHP电子邮件模板:定制化和个性化您的邮件内容。Sep 19, 2023 pm 01:21 PM

PHP电子邮件模板:定制化和个性化您的邮件内容随着电子邮件的普及和广泛应用,传统的邮件模板已经不能满足人们对个性化和定制化邮件内容的需求。现在,我们可以通过使用PHP编程语言来创建定制化和个性化的电子邮件模板。本文将为您介绍如何使用PHP来实现这一目标,并提供一些具体的代码示例。一、创建邮件模板首先,我们需要创建一个基本的邮件模板。这个模板可以是一个HTM

抖音团购商家入驻申请抖音团购商家入驻申请Apr 16, 2024 am 10:08 AM

1、注册并登录抖音账号,完成实名认证。2、前往抖音团购入驻页面,提供商家名称、营业执照和其他相关信息。3、随后上传商品名称、价格、图片和详细描述。完成以上步骤后,提交资料供抖音审核。4、审核通过后,商家即可上线抖音团购页面,发布优惠活动及提供团购服务。

Flask-Bootstrap:为Flask应用程序添加模板Flask-Bootstrap:为Flask应用程序添加模板Jun 17, 2023 pm 01:38 PM

Flask-Bootstrap:为Flask应用程序添加模板Flask是一个轻量级的PythonWeb框架,它提供了一个简单而灵活的方式来构建Web应用程序。它是一款非常受欢迎的框架,但它的默认模板功能有限。要创建富有吸引力的用户界面,需使用其他框架或库。这就是Flask-Bootstrap的用武之地。Flask-Bootstrap是一个基于Twitter

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

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),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.