PHP是否有可能将HTML代码的输出转换为变量?基本上,我正在寻找这段代码的简写:
<?php ob_start(); ?>
<div class="headSection">
<h1><?=$headline?></h1>
<p><?=$bottomline?></p>
</div>
<?php $contents = ob_get_contents(); ob_end_clean(); ?>
我希望将HTML代码保存在$contents
变量中。
答案 0 :(得分:3)
使用PHP的EOF字符串
$str = <<<EOF
<div class="headSection">
<h1>$headline</h1>
<p>$bottomline</p>
</div>
EOF;
echo $str;