


Manual development of PHP template engine 1 (35), PHP template
template is called TPL, which is imitated from smarty template engine.
What we call templates are web templates, which are pages written in a language that is primarily composed of HTML markup, but also has a way of representing dynamically generated content (parsing tags). A template engine is a software library that allows us to
generate HTML code from templates and specify dynamic content to include.
1 Features of template engine:
1. Encourage separation: Improve the readability and maintainability of the entire system.
2. Promote division of labor: Allow programmers and artists to concentrate on their own designs.
3. Easier to parse than PHP: compiled files and cached files load faster and occupy fewer resources.
4. Increase security: It can limit the ability of template designers to perform unsafe operations to avoid accidental deletion and accidental access.
2 Template engine products:
PHP has many template engines specially developed by teams, such as Smarty, Heyes Templates Class,
FastTemplate, etc. If we use these template engines directly, we can fully realize many of the above
features. But for beginners, understanding the principles of template engines can provide a deeper understanding of why templates should be used.
When we create our own template engine, the biggest advantage is simplicity. Because template engines written by many teams have many powerful functions, they are also highly secure. But the disadvantage is that we can’t use many of them, and the size is very
is bloated.
4. Create TPL template engine
1. Folders and files required to create the initial template
a) index.php main file, used to write business logic.
b) template.inc.php template initialization file, used for initial template information.
c) The templates directory stores all template files.
d) The templates_c directory stores all compiled files.
e) The cache directory stores all cache files.
f) The includes directory stores all class files.
g) The config directory stores template system variable configuration files.
<span>//</span><span>设置编码为utf-8</span> header(<span>'</span><span>Content-Type:text/html;charset=utf-8</span><span>'</span><span>); </span><span>//</span><span>网站根目录</span> define(<span>'</span><span>ROOT_PATH</span><span>'</span><span>,dirname(__FILE__)); </span><span>//</span><span>存放模板文件夹</span> define(<span>'</span><span>TPL_DIR</span><span>'</span>,ROOT_PATH.<span>'</span><span>/templates/</span><span>'</span><span>); </span><span>//</span><span>编译文件夹</span> define(<span>'</span><span>TPL_C_DIR</span><span>'</span>,ROOT_PATH.<span>'</span><span>/templates_c/</span><span>'</span><span>); </span><span>//</span><span>缓存文件夹</span> define(<span>'</span><span>CACHE_DIR</span><span>'</span>,ROOT_PATH.<span>'</span><span>/cache/</span><span>'</span>);3 Templates.class.php under the includes folder—added method to determine whether the directory exists
<span>//</span><span>创建一个构造方法</span> <span>public</span><span> function __construct() { </span><span>//</span><span>验证一下目录是否存在</span> <span>if</span> (!is_dir(TPL_DIR) || !is_dir(TPL_C_DIR) || !<span>is_dir(CACHE_DIR)) { exit(</span><span>'</span><span>ERROR:模板文件夹或者编译文件夹或者缓存文件夹没有创建!</span><span>'</span><span>); } }</span>4 Templates.class.php in the includes folder—create a display() method to load the .tpl template file
This is also the display prototype method in samrty
<span>//</span><span>将模板导入到php文件中</span> <span>public</span><span> function display($_file) { </span><span>//</span><span>设置模板文件的路径</span> $_tplFile =<span> TPL_DIR.$_file; </span><span>//</span><span>判断模板文件是否存在</span> <span>if</span> (!<span>file_exists($_tplFile)) { exit(</span><span>'</span><span>ERROR:模板文件不存在!</span><span>'</span><span>); } </span><span>//</span><span>设置编译文件的文件名</span> $_parFile = TPL_C_DIR.md5($_file).$_file.<span>'</span><span>.php</span><span>'</span><span>; </span><span>//</span><span>判断编译文件是否存在,模板文件是否修改过</span> <span>if</span> (!file_exists($_parFile) || filemtime($_parFile) <<span> filemtime($_tplFile)) { </span><span>//</span><span>生成编译文件</span> <span> file_put_contents($_parFile,file_get_contents($_tplFile)); } </span><span>//</span><span>载入编译文件</span> <span> include $_parFile; } </span><span>//</span><span>引入模板类</span> require ROOT_PATH.<span>'</span><span>/includes/Template.class.php</span><span>'</span><span>; </span><span>//</span><span>实例化模板类</span> $_tpl = <span>new</span><span> Template(); </span><span>//</span><span>载入index.tpl</span> $_tpl->display(<span>'</span><span>index.tpl);</span>To be continued

最近几年,PHP编程中的模板引擎已经成为了PHP开发的重要组成部分,方便了程序员进行页面开发和管理。本文将介绍PHP编程中常见的模板引擎。SmartySmarty是一个比较常用的PHP模板引擎,它支持缓存模板、插件模块和自定义函数等一系列功能。Smarty的语法十分灵活,能够解决PHP变量与HTML标记的结合难题,使得PHP语言更适用于模板化的设计。而且,S

Golang模板引擎入门指南:如何在Golang中使用模板,需要具体代码示例简介:模板引擎是一种能将数据和模板进行组合并生成HTML、文本或其他格式文档的工具。在Golang中,我们可以使用内置的模板包(html/template)来实现模板引擎的功能。本文将详细介绍如何在Golang中使用模板引擎,并提供具体的代码示例。一、模板引擎的基本概念在了解如何使用

ThinkPHP6模板引擎使用指南:打造精美的前端界面引言:随着Web应用程序的发展,前端界面的设计和开发变得愈发重要。作为一个开发人员,我们需要使用一个强大的模板引擎来帮助我们创建和管理前端界面。ThinkPHP6的模板引擎正是满足这一需求的强大工具。本文将介绍如何使用ThinkPHP6模板引擎来打造精美的前端界面。第一部分:安装ThinkPHP6模板引擎

Fat-Free框架是一个轻量级的PHP框架,旨在提供简单而灵活的工具来构建Web应用程序。它包含许多有用的功能,例如路由、数据库访问、缓存等。在Fat-Free框架中,使用Blade模板引擎可以帮助我们更方便地管理和渲染模板。Blade是Laravel框架中的模板引擎,它提供了强大的语法和模板继承功能。在本文中,我将演示如何在Fat-Free框架中使用Bl

随着互联网技术的发展,Web应用程序的需求也不断增加。Web开发人员通常使用模板引擎来生成动态网页。这篇文章将探讨一种新的模板引擎:Go语言模板引擎。什么是Go语言模板引擎?Go语言是由Google公司开发的一种先进的编程语言。它的语法简洁明了,易于学习和使用。Go语言模板引擎是Go语言中用于生成HTML模板的一种模板系统。Go语言模板引擎被称为"标准库",

PHP是一种广泛应用于Web开发的语言,无论是开发小型网站还是大型系统,PHP都是非常流行和方便的。在PHP开发过程中,我们需要将逻辑和数据层分离开来,这就需要使用到模板引擎。模板引擎可以简单地理解为将数据和模板文件合并,生成最终的HTML文件。在这篇文章中,我们将介绍一些PHP中可用的最佳模板引擎。SmartySmarty是PHP中最受欢迎的模板引擎之一,

现如今,网站的开发离不了一个重要的组成部分——模板引擎。模板引擎是指一种将页面模板和数据结合起来生成具有特定格式的html代码的工具。在各种网站开发框架中,模板引擎是一个必不可少的组件,因为模板引擎可以大量减少代码的重复性和提高页面的动态性。其中一种最常见和流行的模板引擎是Smarty。Smarty是一个基于PHP语言开发的DSL(DomainSpecif

JavaScript开发中的模板引擎选择与使用经验分享引言:在现代前端开发中,模板引擎(TemplateEngine)扮演着至关重要的角色。它们能够使开发者更加高效地组织和管理大量的动态数据,并有效地将数据与界面展示分离开来。同时,选择合适的模板引擎也能够为开发者带来更好的开发体验和性能优化。然而,在众多的JavaScript模板引擎中,该选择哪一个呢?接


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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Chinese version
Chinese version, very easy to use
