summaryrefslogtreecommitdiff
path: root/tests/output/bug60322.phpt
blob: 9628558d3a1bf3ced547712279aef8619bdf339d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Bug #60322 (ob_get_clean() now raises an E_NOTICE if no buffers exist)
--INI--
output_buffering=128
--FILE--
<?php
ob_start();
while(@ob_end_clean());
var_dump(ob_get_clean());
?>
--EXPECT--
bool(false)