ob_list_handlers
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
ob_list_handlers — 列出所有使用中的輸出處理程式。
說明
ob_list_handlers(): array
列出所有使用中的輸出處理程式。
返回值
此函式將返回一個陣列,陣列元素是正在使用中輸出處理程式名(如果存在的輸出處理程式的話)。 如果啟用了output_buffering 或者在 ob_start() 中建立了一個匿名函式,ob_list_handlers() 將返回 "default output handler"。
範例
示例 #1 ob_list_handlers() example
<?php
//using output_buffering=On
print_r(ob_list_handlers());
ob_end_flush();
ob_start("ob_gzhandler");
print_r(ob_list_handlers());
ob_end_flush();
// anonymous functions
ob_start(create_function('$string', 'return $string;'));
print_r(ob_list_handlers());
ob_end_flush();
?>
以上例程會輸出:
Array ( [0] => default output handler ) Array ( [0] => ob_gzhandler ) Array ( [0] => default output handler )
參見
- ob_end_clean() - 清空(擦除)緩衝區並關閉輸出緩衝
- ob_end_flush() - 沖刷出(送出)輸出緩衝區內容並關閉緩衝
- ob_get_flush() - 刷出(送出)緩衝區內容,以字串形式返回內容,並關閉輸出緩衝區。
- ob_start() - 打開輸出控制緩衝