ob_start:将所有来自PHP程序的非文件头信息保存在内部缓冲区。可以使用ob_end_flush()或fulsh()输出缓冲区内容
ob_end_flush():输出缓冲区内容,关闭缓冲区
fulsh():输出缓冲区内容,刷新缓冲区
如:
<?php
ob_start();//打开缓冲区
echo "hello";//输出到缓冲区
header("location:index.php");//把浏览器重定向到index.php
ob_end_flush();//输出全部内容到浏览器
?>