From 90b5b091a29a6a8196f744784ad14566d955af6e Mon Sep 17 00:00:00 2001 From: Anyon Date: Sun, 26 Apr 2020 11:12:37 +0800 Subject: [PATCH] Update Tools.php --- WeChat/Contracts/Tools.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/WeChat/Contracts/Tools.php b/WeChat/Contracts/Tools.php index 007bc3d..ce353f6 100644 --- a/WeChat/Contracts/Tools.php +++ b/WeChat/Contracts/Tools.php @@ -171,12 +171,11 @@ class Tools */ public static function xml3arr($xml) { - $parser = xml_parser_create(); - if (!xml_parse($parser, $xml, true)) { - xml_parser_free($parser); - return false; + if (xml_parse($parser = xml_parser_create(), $xml, true)) { + return json_decode(json_encode(simplexml_load_string($xml)), true); } - return json_decode(json_encode(simplexml_load_string($xml)), true); + if (is_resource($parser)) xml_parser_free($parser); + return false; } /**