Home  >  Article  >  Backend Development  >  What is the usage of php delimiter?

What is the usage of php delimiter?

王林
王林Original
2021-06-24 14:27:592182browse

The usage of delimiter in php is [<<

What is the usage of php delimiter?

The operating environment of this article: windows10 system, php 7.3, thinkpad t480 computer.

PHP is a Web programming language. During the programming process, you will inevitably encounter the situation of using echo to output large sections of HTML code or Javascript scripts. If you use traditional string output, you must use a large number of escape characters to escape special characters in the string, such as single quotes '', double quotes "", etc., and grammatical errors will inevitably occur.

The delimiter in PHP can define a longer string, and the things inside it can be output as is, including newlines, indentation and other formats, and any special characters in the delimiter No escaping is required, and variables in delimiters can also be parsed. This is one of the reasons why we use delimiters.

The syntax format of the delimiter is as follows:

<<

Note: The symbol <<< is a keyword and must be used; str is our custom identifier, use used as the starting identifier and ending identifier of the text, the identifier names before and after must be exactly the same.

In addition, the semicolon after the end identifier cannot be omitted, and the end identifier must be written at the beginning of a new line. Also, the naming of identifiers must follow the naming rules of other tags in PHP: they can only contain letters, numbers, and underscores, and they must start with an underscore or non-numeric character.

Although variables can be parsed in strings defined using delimiters, operations cannot be performed.

Related video sharing: php video tutorial

The above is the detailed content of What is the usage of php delimiter?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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