mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
Update Tools.php
This commit is contained in:
parent
d42e8836f7
commit
90b5b091a2
@ -171,12 +171,11 @@ class Tools
|
|||||||
*/
|
*/
|
||||||
public static function xml3arr($xml)
|
public static function xml3arr($xml)
|
||||||
{
|
{
|
||||||
$parser = xml_parser_create();
|
if (xml_parse($parser = xml_parser_create(), $xml, true)) {
|
||||||
if (!xml_parse($parser, $xml, true)) {
|
return json_decode(json_encode(simplexml_load_string($xml)), true);
|
||||||
xml_parser_free($parser);
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
return json_decode(json_encode(simplexml_load_string($xml)), true);
|
if (is_resource($parser)) xml_parser_free($parser);
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user