ob_start([string output_callback])- 開啟輸出緩衝區
所有的輸出資訊不在直接發送到瀏覽器,而是儲存在輸出緩衝區裡面,可選得回呼函數用於處理輸出結果資訊。
ob_end_flush - 結束(發送)輸出緩衝區的內容,關閉輸出緩衝區
*/
ob_start(); //開啟緩衝區
echo "hello world"; //輸出內容
$out=ob_get_clean(); //獲得緩衝區內容並且結束緩衝區
$out=strtolower($out); //將字元轉換為小寫
var_dump($out); //輸出結果
//
if(!function_exists('ob_clean')) //判斷函數是否被定義
{
function ob_clean() //定義函數
{
if(@ob_end_clean())
{
return ob_start();
}
trigger_error("ob_clean() failed to delete buffer.no buffer to delete.",e_user_notice);
return false;
}
}
//
header('content-type: multipart/x-mixed-replace;boundary=endofsection'); //發送標題
print "n--endofsectionn"; //輸出內容
$pmt=array("-","","|","/"); //定義數組
for($i=0;$i<10;$i++) //通過迴圈進行操作
{
sleep(1); //暫停執行
print "content-type: text/plainnn"; //輸出內容
print "part $it".$pmt[$i % 4]; //輸出內容
print "--endofsectionn"; //輸出內容
ob_flush(); //發送緩衝區資料
flush(); //重新整理輸出緩衝
}
print "content-type: text/plainnn"; //輸出內容
print "the endn"; //輸出內容
print "--endofsection--n"; //輸出內容