Parsing heredoc usage in php _ PHP Tutorial

Source: Internet
Author: User
How to parse heredoc in php. Heredoc technology is generally not detailed in regular PHP documents and technical books. it only mentions that it is a Perl-style string output technology. However, some of the current forum programs Heredoc technology is not detailed in the formal PHP documentation and technical books, but mentioned that it is a Perl-style string output technology. However, the heredoc technology is cleverly used in some forum procedures and some article systems to partially implement the quasi-separation of interfaces and codes. the phpwind template is a typical example.

As follows:

The code is as follows:


$ Name = 'shappgame ';
Print <


Untitled Document



Hello, $ name!


EOT;
?>


1. < Start to mark start, EndEnd mark ends, The end mark must be written at the top, and there cannot be indentation or spaces,There must be a semicolon at the end of the end mark.. The start tag is the same as the start tag, for example, EOT, EOD, and EOF in uppercase. The start and end tags do not appear in the body..

2. variables between the start tag and the end tag can be parsed normally,But the function cannot.. In heredoc, variables do not need to be concatenated with connectors. or, as shown below:

The code is as follows:


$ V = 2;
$ A = < "Abc" $ v
"123"
EOF;
Echo $ a; // The result is output together with double quotation marks: "abc" 2 "123"


3. heredoc is often used to output a large number of HTML syntax d documents. For example, the outputhtml () function outputs the HTML homepage. There can be two writing methods. Obviously, the second method is relatively simple and easy to read.

The code is as follows:


Function outputhtml (){
Echo"";
Echo"Home Page";
Echo"Homepage content";
Echo";
}

Function outputhtml ()
{
Echo <
Home Page
Homepage content

EOT;
}
Outputhtml ();

Bytes. But now some Forum procedures...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.