I'm almost sure the answer to this is "None at all!" but I'll ask anyway. If you have a conditional statement in PHP which echos a line of html, is there any difference performance-wise between these 2 examples:
<?php if ($output) { ?>
<h2><?=$output;?></h2>
<?php } ?>
and
<?php if ($output) { echo "<h2>".$output."</h2>"; } ?>