Home > Backend Development > PHP Tutorial > php的超文本预处理中预处理应该怎么理解?

php的超文本预处理中预处理应该怎么理解?

WBOY
Release: 2016-06-06 20:33:33
Original
1340 people have browsed it

php的超文本预处理中预处理应该怎么理解?

回复内容:

php的超文本预处理中预处理应该怎么理解?

超文本指的是html,当服务端收到请求,请求文件为.php结尾的时候,服务器软件会请求php程序来处理这个文件,该文件被php预处理完(处理了<?php ?>中的代码),把输出返回给服务器软件,服务器软件再返回给浏览器。可以认为前端代码是由后台输出的,这个输出的处理过程就是预处理。

php自带模板机制,把模板处理成html就是所谓的“预处理”。

超文本就是HTML,所以说PHP就是一个HTML预处理器,进行数据操作后输出HTML在浏览器上显示.你可以认为浏览器就是PHP的GUI界面.PHP跟HTML离得很近,是因为PHP内置了模板引擎,就是<?php ?>这个标签.

我觉得是PHP可以预处理动态数据,将动态数据预先组装成HTML,浏览器解析的全是HTML格式的了

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template