x
 
<!DOCTYPE html>
<html>
<body>
<?php
ob_start();
echo "此内容不会发送到浏览器。";
ob_end_clean();
echo "此内容会发送到浏览器。";
?>
</body>
</html>