From ebece2c5684c80acb319a728bd6186a22a9ad8dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Thu, 19 Nov 2020 16:41:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- System/Core/JSON.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/Core/JSON.php b/System/Core/JSON.php index 402b73c5..5a62c45a 100644 --- a/System/Core/JSON.php +++ b/System/Core/JSON.php @@ -30,7 +30,7 @@ class JSON return $data; } if (is_array($data)) { - return json_encode(ArrayAccess::toArray($data)); + return json_encode($data, JSON_UNESCAPED_UNICODE); } return $data; }