I was reading Google Analytics API documentation and noticed a syntax I've never seen/used before:
<script>
<?php
<<<HTML
cxApi.setChosenVariation(
$chosenVariation, // The index of the variation shown to the visitor
$experimentId // The id of the experiment the user has been exposed to
);
HTML;
?>
</script>
What does <<<HTML
do, what's this called?