mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
兼容PHP8
This commit is contained in:
parent
e392007c6b
commit
9416930902
@ -159,9 +159,8 @@ class Tools
|
|||||||
*/
|
*/
|
||||||
public static function xml2arr($xml)
|
public static function xml2arr($xml)
|
||||||
{
|
{
|
||||||
$entity = libxml_disable_entity_loader(true);
|
if (PHP_VERSION_ID < 80000) libxml_disable_entity_loader(true);
|
||||||
$data = (array)simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
|
$data = (array)simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
|
||||||
libxml_disable_entity_loader($entity);
|
|
||||||
return json_decode(json_encode($data), true);
|
return json_decode(json_encode($data), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user