念のため: これを使用する利点はありますか?
<?php
ob_start();
?>
<html>
<!--Page contents-->
</html>
<?php
$html = ob_get_contents();
ob_end_clean();
echo $html;
?>
念のため: これを使用する利点はありますか?
<?php
ob_start();
?>
<html>
<!--Page contents-->
</html>
<?php
$html = ob_get_contents();
ob_end_clean();
echo $html;
?>