The second option is better. PHP wiwl otherwise have to read all the stuff and output it, but if you have some html stuff tha needs no manipulation or is just static, then its no use telling PHP to echo that.
The best is to use PHP only at its bare minimum
example:
My name is <?php echo $name ?> and I live in <?php $city ?>
rather than having PHP output the whole thing.