I am trying to understand a feature I am seeing in some code ( <<< ):
<?php
$var .= <<<TO_HERE
<a href="something.php">something</a>
{$you_can_use_vars_in_brackets}
TO_HERE;
?>
It appears to be some way to use something other than quotes to encapsulate some values for adding to a var, but I am having trouble fidning out more about it (<<< doesn't work with the search engines)
Any help, another name for this?
Thanks