Query languages like SQL and, rarely, HTML tags can be written in string literals and heredoc, so it's useful to have syntax highlighting
<?php
$sql = 'SELECT * FROM tbl';
if (true) {
$sql = <<<'SQL'
SELECT * FROM tbl
SQL;
}
refs emacs-php/php-mode#695
Query languages like SQL and, rarely, HTML tags can be written in string literals and heredoc, so it's useful to have syntax highlighting
refs emacs-php/php-mode#695