Open caophuong2012 opened 8 years ago
Both are used for show block of text in php.
heredoc echo <<<EOT EOT;
nowdoc echo <<<'EOT' EOT;
No parsing is done inside nowdoc, so it's often used for presenting code.
Assign a string with long text:
$string=<<<EOD tom cao cao thanh phuong EOD;
Both are used for show block of text in php.
heredoc echo <<<EOT EOT;
nowdoc echo <<<'EOT' EOT;
No parsing is done inside nowdoc, so it's often used for presenting code.