PHP中output buffering的原理及應用

2020-07-16 10:05:54
php快取過程

在請求一個PHP的過程中,實際上經過三個快取:

1.程式快取

2.ob快取

3.瀏覽器快取.

開啟ob的兩個方法

1.在php.ini 設定 ;output_buffering = 4096 這裡去掉;號即可

2 在php頁面中使用 ob_start();

通過php.ini 開啟的,則作用於所有的php頁面 。使用ob_start()開啟則只作用於該頁面

ob快取的知識點

在服務中,如果我們開啟了ob快取,則echo資料首先放入到ob中

當PHP頁面執行到最後,則會把ob快取的資料(如果有的話), 強制重新整理到程式快取,然後通過apache對資料封裝成http響應包,返 回給瀏覽器

如果沒有ob,所有的資料直接放入程式快取。 header資訊不管你是否開啟ob,總是放入到程式快取。

ob相關的函數

ob_start($callback)

//在當前頁面中開啟ob,注意callback
ob_start($callback);

ob_get_contents()

//獲取當前ob快取中的內容
ob_get_contents()

ob_get_clean()

//獲取當前ob快取中的內容,並且清空當前的ob快取
ob_get_clean()

ob_flush()

//將ob快取中的內容,刷到程式快取中,但並沒有關閉ob快取
ob_flush()

ob_end_flush()

//關閉ob快取,並將資料刷回到程式快取中
ob_end_flush()

ob_clean()

//將ob快取中的內容清空
ob_clean()

ob_end_clean()

//將ob快取中的資料清空,並且關閉ob快取
ob_end_clean()

注意ob_start($callback)的回撥

<?php
ob_start("callback_func");
function callback_func($str){
    return "callback".$str;
}
echo "123";//輸出:callback123

應用場景

在header()傳送之前的報錯

出錯程式碼

<?php
echo "before_header";
header("Content-type:text/html;charset=utf-8");
echo "after_header";

輸出:

Warning: Cannot modify header information - headers already sent by (output started at /Users/shuchao/Desktop/test.php:2) in /Users/shuchao/Desktop/test.php on line 3

解決辦法

在傳送header前開啟ob,則所有的echo內容都會到ob裡面,從而解決錯誤。

<?php
ob_start();
echo "before_headern";
header("Content-type:text/html;charset=utf-8");
echo "after_headern";

輸出

before_header
after_header

以上就是PHP中output buffering的原理及應用的詳細內容,更多請關注TW511.COM其它相關文章!