Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php $str = <<<EOD Example of string spanning multiple lines using heredoc syntax. EOD; ?>
<?php
$str = <<<EOD
Example of string
spanning multiple lines
using heredoc syntax.
EOD;
?>