<?php $str = 'This is single quoted'; $str = "This is double quoted"; $str = <<<EOD This is a heredoc example This can be multiline EOD; $str = <<<'EOD' This is a nowdoc example This can be multiline EOD; var_dump($str);