From 06ee3506a8f513c748dd986029508f9dea7e281a Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 18 Feb 2019 15:47:07 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E5=86=85?= =?UTF-8?q?=E5=AE=B9=E6=8E=A5=E6=94=B6=E8=A7=A3=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Contracts/Tools.php | 4 ++-- composer.json | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/WeChat/Contracts/Tools.php b/WeChat/Contracts/Tools.php index b919e5c..fda7e90 100644 --- a/WeChat/Contracts/Tools.php +++ b/WeChat/Contracts/Tools.php @@ -150,7 +150,7 @@ class Tools $entity = libxml_disable_entity_loader(true); $data = (array)simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA); libxml_disable_entity_loader($entity); - return json_decode(self::arr2json($data), true); + return json_decode(json_encode($data), true); } /** @@ -162,7 +162,7 @@ class Tools { return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', function ($matches) { return mb_convert_encoding(pack("H*", $matches[1]), "UTF-8", "UCS-2BE"); - }, ($jsonData = json_encode($data)) == '[]' ? '{}' : $jsonData); + }, ($json = json_encode($data)) == '[]' ? '{}' : $json); } /** diff --git a/composer.json b/composer.json index 0e8cfa4..d8ee7c1 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,10 @@ "php": ">=5.4", "ext-json": "*", "ext-curl": "*", - "ext-openssl": "*" + "ext-libxml": "*", + "ext-openssl": "*", + "ext-mbstring": "*", + "ext-simplexml": "*" }, "autoload": { "classmap": [