PHP provides the <<< operator to construct multiple lines A method for a sequence of strings, often called a here-document or expressed as abbreviation for heredoc.
This method elaborates the literal value of the string and preserves the string's underscores and other whitespace (including indentation) in the text. For example:
<?php $author ='wixy'; echo <<<_END Thisis a Headline Thisis the first line. Thisis the second line. ---Writtenby $author. _END; ?>
The PHP parser will output all the content between the two _END tags, which is equivalent to a string quoted with double quotes.
This means that we can write an entire HTML language directly in PHP code, and then use PHP variables to replace the specific dynamic parts.
<?php $out =<<<_END ..... _END; ?>
You can also use the above method to assign the contents of the two tags to variables.
Note: The _END tag used to close must be placed on a separate line, and no other content can be added to this line, even comments or spaces are not allowed