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:
<span style="color:#260ff3" class="has-inline-color"><strong>echo <<<Token
data..
Token;</strong></span>Code language: JavaScript (javascript)<?php
echo <<<MyData
Welcome to here document
it is very "important" data.
MyData;
echo MyData;
?>Code language: HTML, XML (xml)
<?php
$info = <<<MyData
Welcome to here document
it is very "important" data.
MyData;
echo $info;
?>Code language: HTML, XML (xml)