1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/tests/output/bug60322.phpt
Stanislav Malyshev 10b9579395 fix test for bug #60322
2013-06-13 10:30:00 -07:00

12 lines
209 B
PHP

--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)