Update Tools.php

This commit is contained in:
邹景立 2021-11-11 14:24:28 +08:00
parent 9416930902
commit cf2037dbac

View File

@ -159,8 +159,13 @@ class Tools
*/ */
public static function xml2arr($xml) public static function xml2arr($xml)
{ {
if (PHP_VERSION_ID < 80000) libxml_disable_entity_loader(true); if (PHP_VERSION_ID < 80000) {
$data = (array)simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA); $backup = libxml_disable_entity_loader(true);
$data = (array)simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
libxml_disable_entity_loader($backup);
} else {
$data = (array)simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
}
return json_decode(json_encode($data), true); return json_decode(json_encode($data), true);
} }