1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
--TEST-- Output buffering tests --POST-- --GET-- --FILE-- <?php ob_start(); echo ob_get_level(); echo 'A'; ob_start(); echo ob_get_level(); echo 'B'; $b = ob_get_contents(); ob_end_clean(); $a = ob_get_contents(); ob_end_clean(); echo $b; echo $a; ?> --EXPECT-- 2B1A