Consider
<a href="<?php echo $url;?>"><?php echo $name;?></a>
and compare with
<?php echo "<a href=\"{$url}\">{$name}</a>";?>
then consider hundreds of these in different variations on the same page.
Does one or the other convention affect performance in any way or is it just a matter of preference?