mirror of
https://github.com/php/php-src.git
synced 2024-12-27 10:50:19 +08:00
9 lines
168 B
PHP
9 lines
168 B
PHP
--TEST--
|
|
Bug #60322 (ob_get_clean() now raises an E_NOTICE if no buffers exist)
|
|
--FILE--
|
|
<?php
|
|
while(ob_get_clean()) ;
|
|
var_dump(ob_get_clean());
|
|
--EXPECT--
|
|
bool(false)
|