Heredoc boilerplate
<?php
$variables = “variables”;
$heredoc = <<<BLOCKREFERENCE
text is ok
“quotes” are okay
$variables okay
newlines are okay
tabbed content is okay
semicolons; are okay
<div>HTML okay</div>
BLOCKREFERENCE;
echo $heredoc;