輸出緩衝區處理函數的作用有點類似C的堆疊,暫時放入一個儲存空間中,對內容進行處理。
輸出緩衝區函數有:
ob_start() - 開啟輸出控制緩衝
ob_get_length() - 傳回輸出緩衝區的長度
##ob_get_level () - 傳回輸出緩衝區的巢狀層級
#ob_get_status() - 傳回輸出緩衝區的狀態(陣列形式傳回,預設回傳最頂層,參數為true時回傳所有)
#ob_get_contents() - 傳回輸出緩衝區的內容
#ob_get_clean() - 以字串格式傳回目前輸出緩衝區並關閉輸出緩衝
ob_end_clean () - 清空(擦除)緩衝區並關閉輸出緩衝區
#ob_get_flush() - 以字串傳回輸出緩衝區內容並關閉緩衝
ob_end_flush() - 沖刷出(送出)輸出緩衝區內容緩衝
#實例如下:
<?php define('APP_ROOT', dirname(FILE)); $file = '/templates/html/error_config.html'; ob_start(); include(APP_ROOT.$file); ob_end_flush(); //$contents = ob_get_contents(); 这样可以将输出保存,可以作进一步处理 //ob_end_clean(); //echo $contents; ?>
<?php echo"<?xml version=\"1.0\" encoding=\"utf-8\">"; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <title>Error</title> </head> <body onload="doRedirect()"> <h1>Error</h1> <div style="position:absolute;top:150px;text-align:center;width:95%;"> <p style="margin:12pt;"><strong>config.php</strong> does not exist or is not readable by the webserver in the directory.</p> <p style="margin:12pt;"><?php echo CommonFunctions::$PSI_VERSION_STRING ?></p> </div> </body> </html>
config.php does not exist or is not readable by the webserver in the phpsysinfo directory.
以上是php:輸出緩衝區處理函數用法總結的詳細內容。更多資訊請關注PHP中文網其他相關文章!