What is the most efficient way to render a page with PHP and HTML?
压缩
$html = <span><img src="page.png" alt="page" /> .$variable1. </span> ;
echo $html
变数
$html = "<span><img src="page.png" alt="page" />{$variable1}</span>";
echo $html;
Inline PHP tags - 即便在较大规模上效率最高,这似乎也是实际的。
<span><img src="page.png" alt="page" /><?php echo $variable1; ?></span>
请假设您将产生一个整页。 我将上述信标作为每一种方法的范例。
感谢!