1 2 3 4 5 6 7 8 9 10 11
--TEST-- output buffering - ob_clean --FILE-- <?php ob_start(); echo "foo\n"; ob_clean(); echo "bar\n"; ?> --EXPECT-- bar