只是出于好奇:使用它有什么好处吗?
<?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;
?>