public static function xmlStr2Array($str)
{
$result = null;
if(is_string($str)) {
try {
$xml = simplexml_load_string($str);
$result = null;
if(false != $xml) {
$result = json_decode(json_encode($xml), true);
}
} catch(Exception $e) {
}
}
return $result;
}
{
$result = null;
if(is_string($str)) {
try {
$xml = simplexml_load_string($str);
$result = null;
if(false != $xml) {
$result = json_decode(json_encode($xml), true);
}
} catch(Exception $e) {
}
}
return $result;
}