Strings and heredocs before zend_highlight() change:

<?php

<<<EOT
Some ${var}s and text...
Are they a different $color?
EOT;

"Complex var: {$arr['key'][123]}, and $obj->var!";

`
$cmd --arg`;

Strings and heredocs after zend_highlight() change:

<?php

<<<EOT
Some ${var}s and text...
Are they a different 
$color?
EOT;

"Complex var: {$arr['key'][123]}, and $obj->var!";

`
$cmd --arg`;