首頁 >後端開發 >php教程 >PHP flush 函數使用注意事項

PHP flush 函數使用注意事項

高洛峰
高洛峰原創
2016-12-22 16:27:331225瀏覽

ob_*系列函數, 是操作PHP本身的輸出緩衝區.

所以, ob_flush是刷新PHP自身的緩衝區.

而flush, 嚴格來講, 這個只有在PHP做為apache的Module(handler或者filter )安裝的時候, 才有實際作用.
它是刷新WebServer(可以認為特指apache)的緩衝區.

在apache module的sapi下, flush會透過調用sapi_module的flush成員函數指標,
間接的調用apache的api: ap_rflush刷新apache的輸出緩衝區, 當然手冊中也說了, 有一些apache的其他模組,
可能會改變這個動作的結果..

有些Apache的模組,比如mod_gzip,可能自己進行輸出緩存,這將導致flush()函數產生的結果不會立即被傳送到客戶端瀏覽器。

甚至瀏覽器也會在顯示之前,快取接收到的內容。例如 Netscape瀏覽器會在接受到換行或 html標記的開頭之前快取內容,並且在接受到 標記之前,不會顯示整個表格。

一些版本的 Microsoft Internet Explorer
只有當接受到的256個位元組以後才開始顯示該頁面,所以必須傳送一些額外的空格來讓這些瀏覽器顯示頁面內容。

所以, 正確使用倆者的順序是. 先ob_flush, 然後flush,

當然, 在其他sapi下, 不調用flush也可以, 只不過為了保證你代碼的可移植性, 建議配套使用.

<?php
// set_time_limit(0);
header(&#39;Content-Type: text/event-stream&#39;);
header(&#39;Cache-Control: no-cache&#39;);
// ob_end_flush();
// ini_set(&#39;output_buffering&#39;, 0);
// ini_set(&#39;implicit_flush&#39;, 1);
if (ob_get_level() == 0) ob_start();
echo str_repeat(&#39; &#39; ,4096);
$long = 60;
while($long > 0)
{
$time = date(&#39;r&#39;);
echo "data: The server time is: {$time}\n\n";
ob_flush();
flush();//break;
sleep(1);
$long --;
}
// var source=new EventSource("http://localhost:18000/sse.php");source.onmessage=function(event){console.info(event.data)};
?>

   

如果要在nginx + fpm + php 上支援需要加上一個回應頭

header('X-Accel-Buffering: no');
This eliminates both prox 6), fastcgi_buffering. The fastcgi bit is crucial if you're using php-fpm. The header is also far more convenient to do on an as-needed basis.
Docs on X-Accel-Buffering.httpcelcel-Buffering.http://nginorg /en/docs/http/ngx_http_fastcgi_module.html#fastcgi_buffering ;

<?php
// set_time_limit(0);
header(&#39;Content-Type: text/event-stream&#39;);
header(&#39;Cache-Control: no-cache&#39;);
header(&#39;X-Accel-Buffering: no&#39;);
 
// ob_end_flush();
// ini_set(&#39;output_buffering&#39;, 0);
// ini_set(&#39;implicit_flush&#39;, 1);
 
// if (ob_get_level() == 0) ob_start();
// echo str_repeat(&#39; &#39; ,4096);
 
$long = 60;
while($long > 0)
{
    $time = date(&#39;r&#39;);
    echo "data: The server time is: {$time}\n\n";
    ob_flush();
     
    flush();//break;
    sleep(1);
    $long --;
}
// var source=new EventSource("http://localhost:18000/sse.php");source.onmessage=function(event){console.info(event.data)};
?>

    

更多PHP flush 函數使用注意事項相關文章請關注PHP中文網!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn