blob: e3bcb76f7fcfe0ee2253107e744995455b144c6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--TEST--
Bug #41067 (json_encode() problem with UTF-16 input)
--SKIPIF--
<?php if (!extension_loaded("json")) print "skip"; ?>
--FILE--
<?php
$single_barline = "\360\235\204\200";
$array = array($single_barline);
var_dump(bin2hex((binary)$single_barline));
$json = json_encode($array);
$json_decoded = json_decode($json, true);
var_dump(bin2hex((binary)$json_decoded[0]));
?>
--EXPECT--
string(8) "f09d8480"
string(8) "f09d8480"
--UEXPECT--
unicode(8) "f09d8480"
unicode(8) "f09d8480"
|