Merge pull request #167 from m-takagi/fix-heredoc-example

Remove single quotes from heredoc identifier
This commit is contained in:
Josh Lockhart
2012-08-10 15:46:49 -07:00

View File

@@ -257,7 +257,7 @@ strings without the need for concatenating.
<?php
$a = 'Variables';
$str = <<<'EOD' // initialized by <<<
$str = <<<EOD // initialized by <<<
Example of string
spanning multiple lines
using nowdoc syntax.