Google News
logo
PHP - Interview Questions
What is the difference between nowdoc and heredoc?
Heredoc and nowdoc are the methods to define the string in PHP in different ways.
 
* Heredoc process the $variable and special character while nowdoc doesn't do the same.

* Heredoc string uses double quotes " " while nowdoc string uses single quote ' '

* Parsing is done in heredoc but not in nowdoc.
Advertisement