1--TEST-- 2ob_start(): ensure even fatal error test is affected by output buffering. 3--FILE-- 4<?php 5 6function f() { 7 return "I have stolen your output"; 8} 9 10ob_start('f'); 11cause_fatal_error(); // call undefined function 12ob_end_flush(); 13 14echo "done (you shouldn't see this)"; 15 16?> 17--EXPECT-- 18I have stolen your output 19