The Wayback Machine - https://web.archive.org/web/20211021105216/https://www.php.net/manual/vote-note.php?id=118916&page=language.types.string&vote=down
PHP 8.0.12 Released!

Voting

Please answer this simple SPAM challenge: min(three, six)?
(Example: nine)

The Note You're Voting On

sideshowAnthony at googlemail dot com
5 years ago
Something I experienced which no doubt will help someone . . .
In my editor, this will syntax highlight HTML and the $comment:

$html = <<<"EOD"
<b>$comment</b>
EOD;

Using this shows all the same colour:

$html = <<<EOD
<b>$comment</b>
EOD;

making it a lot easier to work with

<< Back to user notes page

To Top