php function inside heredoc code example
Example 1: php heredoc
$output = <<<HTML
<p>Lorem ipsum dolor sit amet consectetur<p>
<a href="{$foobar}">click here</a>
HTML;
Example 2: heredoc php
$name = 'name';
$str = <<<EOT
my name is $name
line 2
line 3
" you can put double quote
' you can put simple quote
few lines
EOT; // take it at the beginning of the line
echo $str;