Fix handling of \u escapes #4
|
@ -232,7 +232,7 @@ class JSONStream
|
||||||
$this->offset += strlen($m[0]);
|
$this->offset += strlen($m[0]);
|
||||||
if ($m[0][0] == "\\")
|
if ($m[0][0] == "\\")
|
||||||
{
|
{
|
||||||
if ($m[0] == 'u')
|
if ($m[0][1] == 'u')
|
||||||
$v .= mb_convert_encoding(pack('H*', str_replace('\\u', '', $m[0])), 'UTF-8', 'UTF-16BE');
|
$v .= mb_convert_encoding(pack('H*', str_replace('\\u', '', $m[0])), 'UTF-8', 'UTF-16BE');
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue