1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-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--
[
[],
{},
{}
]