search
HomeBackend DevelopmentPHP Tutorialsmarty template execution principle_PHP tutorial

In order to separate the business logic of the program from the content presentation page and improve the development speed, PHP introduced the concept of template engine. The most popular PHP template engine can be said to be smarty. Smarty is powerful and powerful. It is fast and recognized by the majority of PHP web developers. This article will record the working execution principle of smarty template engine to deepen our understanding.

In fact, the working principle of all template engines is similar. It is nothing more than using regular matching in the PHP program to replace the tags in the template with PHP code to mix the two into a PHP mixed file, and then execute this mixed file. Compile documents. That's basically what happened. Let’s take smarty as an example to describe this process.

For example, the article page of this website: http://www.phpernote.com/article.php?id=795

The general process is as follows:

Part of the html template page code (article.html):

<body>
<div>{subject}</div>
<div>{content}</div>
</body>

PHP page logic part code:

$subject='smarty视频教程分享';
$content='smarty视频教程分享,下面是具体的下载地址,有需要的朋友可以看看,对smarty模板讲解的非常详细,作者粗略看了一下目录,真是详细到细枝末节该......';
$str=file_get_contents('article.html');
$str=str_replace('{subject}',$subject,$str);
$str=str_replace('{content}',$content,$str);
echo $str;

The encapsulation code using object-oriented technology to implement the template function is as follows:

<?php
class Template{
	//属性
	public $vars;                        //保存要替换的标记和数据的内容
	public $left_delimiter='{*';        //左分隔符
	public $right_delimiter='*}';        //右分隔符
	//方法
	public function assign($key,$value){
		$this->vars[$key]=$value;
	}
	public function display($file){//file表示模板名
		$str=file_get_contents($file);//从模板中读取多有内容,并将内容放入$str中
		foreach ($this->vars as $key => $value){ //$key 键名(模板标记) $value 值
			$str=str_replace($this->left_delimiter.$key.$this->right_delimiter, $value, $str);
		}
		echo $str;
		//file_put_contents('bak.html', $str);
	}
}

Note: assign('name','zhangsan'); in this sentence, the data has not been replaced yet, but the incoming data is saved in vars[], and is only performed when displaying Data replacement.

smarty processing process:

1. Smarty first compiles the php source file into an intermediate file

2. If caching is enabled, the cache file will be generated based on the compiled file

3. Each subsequent access will access the compiled file

If the cache file is enabled and there is a cache file and the cache file has not expired, access the cache file directly (ignoring the caching process first) In the compiled file The timestamp records the modification time of the template file. If the template has been modified, it can be detected and recompiled.

(Compilation is to save static content, and dynamic content varies according to the parameters passed in)

Reading compiled files saves the time of reading template files and string replacement, so it can be faster.

Compile when article.php is requested for the first time, and a compiled file is generated, which is in the compiled file.

When requesting article.php for the second time, determine whether the template file has changed. If the template file has changed, then read the template file and then compile it. If it has not changed, read the compiled file. The final output of the compiled file;

Caching is turned off by default; caching is to store data completely in the cache file, and it will not be cached again until the cache file expires; therefore, smarty is not particularly suitable for some websites that are particularly real-time;

The above text can be understood abstractly as the picture below. Readers can experience it for themselves!

smarty template execution principle_PHP tutorial

Consider caching:

In the smarty program, to determine whether the cache file is enabled and the cache file has not expired, go to the cache file. If the cache file is not enabled, go to the template file. If The cache file has expired, and the template file is also judged.

Articles you may be interested in

  • The loop table in smarty template is not fully supplemented with td
  • Extension plug-in for for loop in smarty template
  • How to generate random numbers in smarty templates
  • How to determine if an array is empty in smarty templates
  • How to use constants defined by define in the program in smarty templates
  • Using php functions in smarty templates and how to use multiple functions for one variable in smarty templates
  • Add the latest tags to information in smarty templates
  • Summary of retained variables in smarty templates

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/764079.htmlTechArticleIn order to achieve the separation of the program's business logic and content presentation pages to improve development speed, PHP introduced the concept of template engine , the most popular PHP template engine can be said to be smarty...
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
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++模板特化影响函数重载和重写:函数重载:特化版本可提供特定类型不同的实现,从而影响编译器选择调用的函数。函数重写:派生类中的特化版本将覆盖基类中的模板函数,影响派生类对象调用函数时的行为。

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

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

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

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

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

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

C++中的模板元编程面试常见问题C++中的模板元编程面试常见问题Aug 22, 2023 pm 03:33 PM

C++是一门广泛应用于各个领域的编程语言,其模板元编程是一种高级编程技术,可让程序员在编译时对类型和数值进行变换。在C++中,模板元编程是一个广泛讨论的话题,因此在面试中,与此相关的问题也是相当常见的。以下是一些可能会被问到的C++中的模板元编程面试常见问题。什么是模板元编程?模板元编程是一种在编译时操作类型和数值的技术。它使用模板和元函数来根据类型和值生成

Vue中如何实现图片的模板和蒙版处理?Vue中如何实现图片的模板和蒙版处理?Aug 17, 2023 am 08:49 AM

Vue中如何实现图片的模板和蒙版处理?在Vue中,我们经常需要对图片进行一些特殊的处理,例如添加模板效果或者加上蒙版。本文将介绍如何使用Vue实现这两种图片处理效果。一、图片模板处理在使用Vue处理图片时,我们可以利用CSS的filter属性来实现模板效果。filter属性给元素添加图形效果,其中的brightness滤镜可以改变图片的亮度。我们可以通过改变

教程:使用Vue和HTMLDocx快速生成可定制的Word文档模板教程:使用Vue和HTMLDocx快速生成可定制的Word文档模板Jul 21, 2023 pm 11:42 PM

教程:使用Vue和HTMLDocx快速生成可定制的Word文档模板导言:在实际工作中,我们常常需要为不同的业务场景生成定制化的Word文档。而使用Vue和HTMLDocx库可以帮助我们快速生成符合要求的Word文档模板。本教程将详细介绍如何使用Vue和HTMLDocx实现这一功能,并提供代码示例供参考。步骤一:安装相关依赖以及初始化Vue项目首先,我们需要在

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

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use