mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 09:52:47 +08:00
修改xml3arr
This commit is contained in:
parent
656223cd2a
commit
5cf008c374
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user