Here document use in php

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:

echo <<<Token
        data..
        Token;
<?php
  echo <<<MyData
       Welcome to here document   
       it is very "important" data.
       MyData;                       
  echo MyData;
?>
<?php
$info = <<<MyData
       Welcome to here document   
       it is very "important" data.
       MyData;
echo $info;
?>