[更新]xml获取安全处理 #11

This commit is contained in:
Anyon 2018-07-11 10:02:41 +08:00
parent 8a38e24160
commit 39682a047e

View File

@ -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);
}
/**