Use of the PHP delimiter EOF

Source: Internet
Author: User

PHP is a web programming language, in the programming process will inevitably encounter with Echo to output a large segment of HTML and JavaScript script, if the traditional output method-by string output,

There must be a large number of escapes to escape special characters such as quotes in a string to avoid syntax errors. If it is one or two, it can be tolerated,

But if a complete HTML text or a 100-line JS I think who will collapse. That's why PHP introduces a delimiter--at least for a large part of the reason.


The function of the 1.PHP delimiter is to follow the original, including the newline format, and output something inside it;
2. Any special characters in the PHP delimiter do not need to be escaped;
The PHP variable in the 3.PHP delimiter is replaced with its value as normal.

The delimiter format in PHP is this:

<<<Eof ... Eof;

Like what:

$url = ' http://baidu.com '; $js = <<<eof<script type= "text/javascript" >window. top.location.href = " $url? login "; </script>eof;//do not have any spaces before this Terminator Echo$js;

Use of the PHP delimiter EOF

Related Article

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.