使用ob_flush()前,確保前面的內容大小足夠4069字符。一些Web服務器的output_buffering默認是4069字符或者更大,即輸出內容必須達到4069字符服務器才會flush刷新輸出緩沖,為了確保flush有效
php教程 ob_flush flush 輸出緩存實例與說明
*/
ob_flush();
//
flush();
//
function flush (){
echo(str_repeat(' ',256));
// check that buffer is actually set before flushing
if (ob_get_length()){
@ob_flush();
@flush();
@ob_end_flush();
}
@ob_start();
}
//str_repeat(string,repeat) 把字符串重復指定的次數。
//實例二
@apache_setenv('no-gzip', 1);
@ini_set('zlib.output_compression', 0);
@ini_set('implicit_flush', 1);
for ($i = 0; $i < ob_get_level(); $i++) { ob_end_flush(); }
ob_implicit_flush(1);
/*
使用注意事項:
flush和ob_flush的使用上有一些特別容易犯錯的地方,造成無法刷新輸出緩沖。
一. flush和ob_flush的正確順序,正確應是,先ob_flush再flush,如下:
以下為引用的內容:
ob_flush();
flush();
如果web服務器的操作系統是windows系統,那順序顛倒或者不使用ob_flush()也不會出現問題。但是在linux系統上就無法刷新輸出緩沖。
二. 使用ob_flush()前,確保前面的內容大小足夠4069字符。
一些web服務器的output_buffering默認是4069字符或者更大,即輸出內容必須達到4069字符服務器才會flush刷新輸出緩沖,為了確保flush有效