<?php
echo
str_pad
(
" "
, 256);
1;
ob_flush();
//释放缓冲里的数据
flush
();
//这里不会实时输出
sleep(4);
//或者下面方法
ob_end_clean();
//终止缓冲
?>