summaryrefslogtreecommitdiff
path: root/ext/json/tests/bug66025.phpt
blob: 9322d39b66c66ca84bf864a2f83849be26b65e8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #66025 (Indent wrong when json_encode() called from jsonSerialize function)
--SKIPIF--
<?php
if (!extension_loaded('json')) die('skip');
?>
--FILE--
<?php

class Foo implements JsonSerializable {
    public function jsonSerialize() {
	    return json_encode([1], JSON_PRETTY_PRINT);
	}
}

echo json_encode([new Foo]), "\n";
?>
--EXPECT--
["[\n    1\n]"]