mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
10 lines
229 B
PHP
10 lines
229 B
PHP
--TEST--
|
|
Bug #60321 (ob_get_status(true) no longer returns an array when buffer is empty)
|
|
--FILE--
|
|
<?php
|
|
$return = ob_get_status(true);
|
|
var_dump($return);
|
|
--EXPECT--
|
|
array(0) {
|
|
}
|