xml转数组

function xmlToArray($xml)
{
 //禁止引用外部xml实体
 libxml_disable_entity_loader(true);
 $values = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
 return $values;
}
原文链接:,转发请注明来源!
评论已关闭。