I am a newbie in php. Saw something like this
$aaa = <<<EOT
<html>
<body bgcolor="#ffffff">
<p align="center">
<b>Hello World!!</b>
</p>
</body>
</html>
EOT;
in an online PHP tutorial. I understand this could be used to assign a huge chunk of text to the variable. But can't find any mention of '<<<' in the PHP manual. Nor could I come up with anything using online searches.
Could someone please tell me what exactly it is and where was it documented?
Thanks.