Home Backend Development PHP Tutorial Thoughts about templates, please come in if you are familiar with templates. _PHP Tutorial

Thoughts about templates, please come in if you are familiar with templates. _PHP Tutorial

Jul 13, 2016 pm 05:27 PM
php template about right think us implement template use of explain conduct Project Development


Using PHP for project development, due to PHP's interpretation and execution, we often face conflicts between execution speed, versatility, and programming efficiency, and then how to choose. The early versions of PHP were process-oriented and famous for their fast execution speed, which was increasingly difficult to develop complex applications. With the release of 4.3 and later versions, we can see that PHP will develop in the object-oriented direction.
Use PHP When developing projects, due to PHP's interpretation and execution, we often face conflicts between execution speed, versatility, and programming efficiency, and then how to choose. The early versions of PHP were process-oriented and famous for their fast execution speed. They were increasingly unable to develop complex applications. With the release of version 4.3 and later, we can see that PHP will develop in the object-oriented direction, so everyone gradually became accustomed to writing A large number of base classes and extensive use of include_once make our development orderly and the program logic clearer. After we completed the development, we found that the execution efficiency was not as good as before. PHP spent too much overhead on parsing and file calling. Using more than ten or twenty includes on a page will bring down PHP. Our attention begins to shift from the database to the optimization of PHP programs. On the one hand, it is understandable to use object-oriented mode for large data drivers. On the other hand, PHP code The simplicity and efficiency of C-like languages ​​should be highlighted. So we are confused: How to ensure the execution efficiency of large applications? This is a question I've been thinking about for a long time.
Maybe the above topics involve too much. Now I just want to talk specifically about the problem of processing a large number of templates: for hundreds of pages, each page has dynamic data, and a small number of pages involve more variables. How to facilitate it? How to implement template variable substitution? Should I just use set_var() to replace it line by line?
The widespread adoption of the template mechanism has made the mixing of PHP code and HTML a thing of the past, solving the conflict between front-end output and back-end programs. The front-end is transparent to programmers, and the back-end is also transparent to editors. The advantages are self-evident. As a metaphor, the price we pay is just to agree on a set of variable names and simply replace them. However, there are hundreds of templates for hundreds of web pages, and each page may have dozens of variables, so this simple variable replacement work has become cumbersome. Taking PHPLIB's template as an example, it requires dozens of lines of set_var (), I began to imagine a VIEW class that would inherit template, define an array member to save a variable name table for replacement, provide setvalue() and output() methods, and assign values ​​through setvalue($key,$value). It was very Obviously $value is the data taken out from the database, and $key is the variable to be replaced. The difficulty is how to determine the value of $key (that is, the name in {} in HTML). For example, in the template file my.tpl, like Like this:


Your username is
Position is It should look like this in the PHP file ($name and $position are dynamic data): …… $tp->set_file("filehandle","my.tpl"); $vararr=array("tpname"=>$name,"tpposition=>$position); tp->set_var($vararr); tp-> pparse("out","filehandle"); In the penultimate line, I use an array to pass the list of variables to be replaced. It is normal for a page to have ten or twenty template variables. The question is whether it is convenient to set the array at once. (that is, the variable names to be replaced such as "tpname" and "tpposition"), otherwise you can only set_var line by line. I am still exploring, and everyone is welcome to actively exchange solutions in this regard .

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/531885.htmlTechArticleUsing PHP for project development, due to PHP’s interpretation and execution, we often face execution speed, versatility, and programming efficiency Conflicts arise, and then there is the question of how to choose. Early versions of PHP were...
Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles