PHP Nowdoc April 24, 2018 Pramod T P Leave a comment • similar to HEREDOC, but no parsing is conducted • same <<< identifier, but the identifier must be enclosed in single quotes • Do not indent ending identifier or add any chars <?php $string = <<<'DEMO' PHP Code DEMO; echo $string; ?>