DEV Community

Discussion on: Favorite String Literals

 
fjones profile image
FJones

Neither can NOWDOC (<<<'END'), which is quite important at times. HEREDOC (<<<END) does get interpolated.

There's few reasons to choose interpolation in PHP, but the ones I've found over the years tend to actually be HEREDOC rather than regular string literals (code generation with HEREDOC is lovely!).

Thread Thread
 
pyrsmk profile image
Aurélien Delogu

I admit that I rarely used them.