php-src/ext/json/tests/bug66021.phpt
2020-05-28 15:07:47 -04:00

19 lines
268 B
PHP

--TEST--
Bug #66021 (Blank line inside empty array/object when JSON_PRETTY_PRINT is set)
--FILE--
<?php
class Foo {
private $bar = 'baz';
}
echo json_encode(array(array(), (object) array(), new Foo), JSON_PRETTY_PRINT);
?>
--EXPECT--
[
[],
{},
{}
]