...EOF;" syntax."> Usage of php eof-PHP Problem-php.cn

Usage of php eof

藏色散人
Release: 2023-03-09 08:18:01
Original
2633 people have browsed it

php eof usage: First create a PHP sample file; then define a string through the "echo << ...EOF;" syntax Can.

Usage of php eof

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

PHP EOF usage instructions

Let’s introduce how to use EOF, as follows:

PHP EOF (heredoc) is a command line shell (such as sh, csh, ksh, bash, PowerShell and zsh) and program How to define a string in languages like Perl, PHP, Python, and Ruby.

Usage overview is as follows:

1. It must be followed by a semicolon, otherwise the compilation will not pass.

2. EOF can be replaced by any other character, as long as the end identifier and the start identifier are consistent.

3. The end mark must occupy a line by itself at the top of the line (that is, it must start from the beginning of the line, and cannot be connected with any blanks or characters before and after).

4. The start mark can be without quotation marks or with single or double quotation marks. Without quotation marks, the effect is the same as with double quotation marks. Embedded variables and escape symbols will be interpreted. With single quotation marks, embedded variables will not be interpreted. and escape symbols.

5. When the content requires embedded quotes (single quotes or double quotes), there is no need to add escape characters. Single and double quotes are escaped by itself. This is equivalent to the usage of q and qq.

The following is a simple example:

我的第一个标题 

我的第一个段落。

EOF; // 结束需要独立一行且前后不能空格 ?>
Copy after login

Note the following points:

1. Start with <<

2. The start tag and the end tag are the same, such as commonly used uppercase EOT, EOD, EOF, but not limited to those (can also use: JSON, HTML, etc.), as long as the start tag and end tag are ensured The markup does not need to appear in the text.

3. Variables located between the start tag and the end tag can be parsed normally, but functions cannot. In heredoc, variables do not need to be spliced with connectors . or , as follows:

Copy after login

[Recommended learning:PHP video tutorial]

The above is the detailed content of Usage of php eof. 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
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!