“heredoc” syntax can be used to declare complex strings,
What will out put the following code snippet?
<?php $who = "questions"; echo <<<TEXT So I said, "php interview $who" TEXT; ?>
Answer – So I said, “php interview questions”
In general, the functionality of this heredoc syntax is similar to double quotes.

