Summary of ways to mix PHP and HTML

不言
Release: 2023-03-30 16:04:01
Original
1969 people have browsed it

The following is a summary of how to mix PHP and HTML. The content is quite good, so I will share it with you now and give it as a reference.

PHP is a back-end language. In order to output it to the browser for the browser to display, it is inevitable to output HTML code. The following is an introduction to the three PHP/HTML hybrid methods I have used

1. Single/double quotation mark enclosing method

This is the most basic method. The usage is as follows


 
   
      
   
测试页面 '; ?>
Copy after login

This is the simplest method, just wrap it in single quotes

As for the difference between double quotes and single quotes, it isThe former parses variables within quotation marks, while the latter does not parse variables within quotation marks, see the example below

';
 echo '$Content';
 ?>
Copy after login

Output

1 Hello!
2 $Content

It can be seen that the variable name in the string surrounded by double quotes is automatically parsed into the variable value, while it is still displayed when surrounded by single quotes. There are two disadvantages to writing the variable name

1. If the output content contains single/double quotes, it will be extremely difficult to process, because PHP cannot determine whether the quotation marks belong to the program or the output content, so it will report an error

2. Some modern text editors (such as SublimeText) written in this way will not be able to syntax color the output content surrounded by quotation marks. If Some formatting problems will be extremely difficult to detect. The picture is a screenshot of SublimeText3. The top one is the normal coloring, and the bottom one is the coloring surrounded by quotes

2. Use HEREDOC/ NOWDOC

##HEREDOC and NOWDOC are a new feature that PHP5.3 began to support. It allows the use of a custom identifier to surround text in the program, while HEREDOC and NOWDOC The relationship is similar to that between double quotes and single quotes.

The former parses the variables in the block, while the latter does not parse the variables in the block

Introduced below The usage of HEREDOC and NOWDOC

';//为了演示方便换行
 
 //NOWDOC和HEREDOC的书写方式差别在于NOWDOC的标识符需要用单引号包围
 echo <<<'LABEL'
 $Content
 LABEL;
 //其他无异
 
 ?>
Copy after login

You can also refer to the wiki about these two on PHP.net: https://wiki .php.net/rfc/heredoc-with-double-quotes

Writing with HEREDOC/NOWDOC perfectly solves the problem of surrounding quotation marks, but it still does not solve the problem of invalid syntax coloring

3. Embed PHP program blocks in HTML (recommended)

This is a very suitable method, and this method is widely used in applications such as WordPress templates and other occasions. It is also more convenient to write. Just write the relevant code directly where it needs to be output, as follows


 
 
 
   
     <?php OutputTitle(); ?>
   
Copy after login

I think this method is The best of these three methods, but the disadvantage of this is that if there are too many such code blocks, it will seriously affect program reading.

4. Use front-end template engine

As the importance of front-end is increasing day by day in the entire web development, now front-end/back-end engineers are gradually After being separated into two professions, in order to ensure that front-end/back-end engineers can cooperate with each other and make the things developed by front-end development and back-end development more perfect, a series of front-end template engines have gradually been spawned, such as Smarty. The implementation code written using Smarty is very readable, which makes the separation of front/back end more efficient and convenient. Interested students can search and learn about

. The above is the entire content of this article. I hope it will be helpful to everyone’s study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

thinkPHP5.0 framework configuration format, loading, parsing and reading methods

The above is the detailed content of Summary of ways to mix PHP and HTML. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!