php heredoc simple example

<?php
$a=" Test Php Heredoc Syntax ";

print <<< EOD
{$a}
EOD;
?>