Remove single quotes from heredoc identifier

This commit is contained in:
TAKAGI Masahiro
2012-08-11 07:01:01 +09:00
parent 26628985dd
commit 44de4d3b44

View File

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