From 656223cd2aa431823d11142de9c9195639e8bbae Mon Sep 17 00:00:00 2001 From: Anyon Date: Sun, 26 Apr 2020 11:18:55 +0800 Subject: [PATCH] Update Tools.php --- WeChat/Contracts/Tools.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/WeChat/Contracts/Tools.php b/WeChat/Contracts/Tools.php index e9450b8..4133f24 100644 --- a/WeChat/Contracts/Tools.php +++ b/WeChat/Contracts/Tools.php @@ -171,11 +171,13 @@ class Tools */ public static function xml3arr($xml) { - if (xml_parse($parser = xml_parser_create(), $xml, true)) { - return json_decode(json_encode(simplexml_load_string($xml)), true); + $parser = xml_parser_create(); + if (xml_parse($parser, $xml, true)) { + return self::xml2arr($xml); + } else { + xml_parser_free($parser); + return false; } - if (is_resource($parser)) xml_parser_free($parser); - return false; } /**