Table of Contents
回复内容:
Home Backend Development PHP Tutorial PHP 模板引擎有多大意义?

PHP 模板引擎有多大意义?

Jun 17, 2016 am 08:32 AM
php

现在有很多 PHP 模板引擎,并且有不同的模板语言,我一直想不通这样能带来多大的好处,所以我想听听大家的意见。

回复内容:

以前 PHP 的 OO 特性不太好,没有一些优雅的技术手段来将应用逻辑和展示分开,所以发展出了很多模板技术。但现在得益于对 OO 特性的支持,MVC 架构的流行,已经可以丢掉模板引擎了(基于历史原因除外)。Zend Framework 更是直接推荐使用原生 PHP 脚本作为模板引擎,因为 PHP 本来就支持代码与 HTML 的混合书写,同时开发者也更不需要学习新的模板语法。 以前对模版引擎,我也觉得没多大意义,毕竟这事php自己也可以做的很好
但看了twig这款模版引擎之后,我的观点有了些许变化
这款模版引擎在我看来最大的好处就是可以提高套模板的效率
简洁的语法,常用的标签、过滤器、函数,又方便扩展。总之,套模板再也不用写那冗长的php代码了。
要是php也能出个coffeescript就好了。 MVC分开的话,V已经没有意义跑模版引擎了,原生最好。
以前主要是代码分离,方便前端开发。 个人认为模版引擎对于php还是有必要的。
  1. 安全,比如默认转义输出
  2. 规范,防止团队中有人在视图中写大量的逻辑代码
  3. 性能,据说可以提高性能
  4. 可读,个人认为twig或者laravel的blade引擎比php可读性好
个人一直持反对模板引擎的观点。
主要是PHP本身已经可以实现模板引擎的功能了。或者说PHP本身就是一个模板引擎。至于给非后端人员使用,其实这事也有点牵强。确实直接使用PHP书写模板容易引起一些不规范的操作,但是这事其实是靠规范约束的,不是靠技术框架约束的,几乎所有的模板引擎都提供了运行原生代码的能力,页面开发者遇到绕不过去的点仍然会使用原生的PHP代码,然后一样可以埋雷。
良好的规范、共识和review机制来解决这类问题更有效。PHP本身就是一个非常随意的语言,你可以在任何地方取得很多模块本不应该做的事。MVC为了解耦,但是仍然很多人在model和view里读$_GET,在controller甚至view里写sql。在controller和model里写html。这种事一个MVC根本搞不定,否则这个MVC就是一个不具有普适性的MVC了。

综其原因,原生解决不了的问题,模板一样解决不了,而且还要增加学习成本和开发成本,承担不易调试的麻烦,模板引擎本身有bug的风险,多解决一个依赖的成本等等。 模板设计的意义也是目的就是为了程序逻辑与页面展现分离,便于程序员和美工分工协作而又不会互相干扰。

然而早期的PHP模板实际上是按照程序员的思维逻辑产生的一套机制,在这种机制下,包括在现在所谓的“原生”机制下,页面美工仍然需要面对包含着大量代表程序逻辑的html。不能算作是彻底的分离。

要说意义有多大,相对于曾经的ASP社区,PHP社区至少一直在努力探索着这一Web开发的核心问题,推动着这一问题的不断思考和挖掘。

要真正搞好Web开发的MVC分离,不能只站在程序员的角度思考问题,必须考虑Web开发的全程工作分工,分工清晰了,分离的方案就容易确定。
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