1--TEST--
2Test ob_get_flush() function : error conditions
3--INI--
4output_buffering=0
5--FILE--
6<?php
7echo "*** Testing ob_get_flush() : error conditions ***\n";
8
9// No ob_start() executed
10var_dump( ob_get_flush() );
11
12?>
13--EXPECTF--
14*** Testing ob_get_flush() : error conditions ***
15
16Notice: ob_get_flush(): Failed to delete and flush buffer. No buffer to delete or flush in %s on line %d
17bool(false)
18