/**
* xml 转换成数组
* @param $xml
* @return mixed
*/
function xml_to_array($xml){
if (PHP_VERSION_ID < 80000) {
libxml_disable_entity_loader(true);
}
$values = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
return $values;
}