summaryrefslogtreecommitdiff
path: root/tests/output/ob_start_basic_003.phpt
blob: 6fd7fe798ce046dad3f17c2ae868ccfba952bf24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
ob_start(): ensure even fatal error test is affected by output buffering.
--FILE--
<?php

function f() {
	return "I have stolen your output";
}

ob_start('f');
cause_fatal_error(); // call undefined function
ob_end_flush();

echo "done (you shouldn't see this)";

?>
--EXPECTF--
I have stolen your output