If you are going to mix HTML and PHP (which PHP was designed to handle, after all), with largish chunks of HTML and scattered bits of PHP, then "splitting" the HTML out does have a slight performance edge over echo (whether multiline, heredoc, or horrible ugly swarms of echoes from here to the horizon).
As sarahk suggests, templates are more maintainable: nice if you have the time in the first place.