Introduction
Heredoc and nowdoc let you write long text easily in PHP without lots of quotes or dots.
When you want to write a big block of text or code inside PHP.
When you need to keep the text format exactly as you type it.
When you want to include variables inside text easily (heredoc).
When you want to write text exactly as is, without PHP changing anything (nowdoc).
When you want to avoid escaping quotes inside a string.