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?
This question has been addressed quite well before: Opening/closing tags & performance?
In brief, here is the answer: