<!DOCTYPE html>
<html>
<body>
<?php
ob_start();
echo "此输出不会发送到浏览器";
ob_clean();
echo "此输出将发送到浏览器";
ob_end_flush();
?>
</body>
</html>