caophuong2012 / til

What I've learned today
0 stars 0 forks source link

heredoc vs nowdoc #9

Open caophuong2012 opened 8 years ago

caophuong2012 commented 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.

caophuong2012 commented 8 years ago

Assign a string with long text:

$string=<<<EOD tom cao cao thanh phuong EOD;