From 39682a047e5c8f9c66107924dfed4e2080e97eb4 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 11 Jul 2018 10:02:41 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]xml=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E5=AE=89=E5=85=A8=E5=A4=84=E7=90=86=20#11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Contracts/Tools.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/WeChat/Contracts/Tools.php b/WeChat/Contracts/Tools.php index a9bf0a9..247bfe6 100644 --- a/WeChat/Contracts/Tools.php +++ b/WeChat/Contracts/Tools.php @@ -143,7 +143,10 @@ class Tools */ public static function xml2arr($xml) { - return json_decode(self::arr2json(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true); + $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); } /**