I've been developing with PHP for some years now, and recently came across this code:
<?php
echo <<<EOB
<html>
<head>
<title>My title</title>
</head>
...
EOB;
?>
I've never seen this approach to print HTML, which seems to be pretty useful and less prone to some weird variable or double quote syntax error.
I've searched for some official information about this, and only found a post of Rasmus talking about this.
So my question is, can anyone explain me in details about this functionality and what EOB means? Maybe End Of Block?
Thanks in advance for all your answers.