Here document use in php
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
php here document is another way to display the text. In this a token is use in which write multiple line without any quotes like:
echo <<<Token
data..
Token;
<?php
echo <<<MyData
Welcome to here document
it is very "important" data.
MyData;
echo MyData;
?>
<?php
$info = <<<MyData
Welcome to here document
it is very "important" data.
MyData;
echo $info;
?>