summaryrefslogtreecommitdiff
path: root/ext/json/tests/bug68567.phpt
blob: 6d4082c2b733037726909251382b70f308abf015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #68567 JSON_PARTIAL_OUTPUT_ON_ERROR can result in JSON with null key
--SKIPIF--
<?php if (!extension_loaded("json")) print "skip"; ?>
--FILE--
<?php

var_dump(json_encode(array("\x80" => 1), JSON_PARTIAL_OUTPUT_ON_ERROR));

?>
===DONE===
--EXPECTF--
string(6) "{"":1}"
===DONE===