在我的 PHP 脚本中,我将很多 HTML 与一些 PHP/MySQL 数据混合在一起(第一个示例)。通常,我的代码看起来很乱,因为您不能将任何结构带入这种代码组合。
所以,我想知道,第二个脚本是否比第一个脚本更慢(或性能更低)?
第一个脚本
$message = <div class="label" style="width:200px; float:left; text-align:right;">Organisation:</div>
<div class="input" style="margin-left: 210px;"><b>' . $item1[0]['organisation'] . '</b>
</div><div class="label" style="width:200px; float:left; text-align:right;">Group:</div> <div class="input" style="margin-left: 210px;"><b>' .
$item1[0]['group'] . '</b></div><div class="label" style="width:200px; float:left;
text-align:right;">Name:</div> <div class="input" style="margin-left: 210px;"><b>' . $item1[0]['firstname'] . ' ' . $item[0]['lastname'] . '</b></div>
第二个脚本
$message = <div class="label" style="width:200px; float:left; text-align:right;">Organisation:</div>
$message .= <div class="input" style="margin-left: 210px;"><b>' . $item1[0]['organisation'] . '</b></div>
$message .= <div class="label" style="width:200px; float:left; text-align:right;">Group:</div>
$message .= <div class="input" style="margin-left: 210px;"><b>' .$item1[0]['group'] . '</b></div>
$message .= <div class="label" style="width:200px; float:left; text-align:right;">Name:</div>
$message .= <div class="input" style="margin-left: 210px;"><b>' . $item1[0]['firstname'] . ' ' . $item[0]['lastname'] . '</b></div>
还是有更好的方法来处理 PHP 生成的 HTML 页面?