From 5cf008c37471f775ae28a23fd1ac06c91eac682f Mon Sep 17 00:00:00 2001 From: Anyon Date: Sun, 26 Apr 2020 11:22:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9xml3arr?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Contracts/Tools.php | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/WeChat/Contracts/Tools.php b/WeChat/Contracts/Tools.php index 4133f24..fe3882e 100644 --- a/WeChat/Contracts/Tools.php +++ b/WeChat/Contracts/Tools.php @@ -171,13 +171,8 @@ class Tools */ public static function xml3arr($xml) { - $parser = xml_parser_create(); - if (xml_parse($parser, $xml, true)) { - return self::xml2arr($xml); - } else { - xml_parser_free($parser); - return false; - } + $state = xml_parse($parser = xml_parser_create(), $xml, true); + return xml_parser_free($parser) && $state ? self::xml2arr($xml) : false; } /**