You can create a helper function
https://laravel-news.com/creating-helpers
function xmlToArray($xml_string)
{
$doc = @simplexml_load_string($xml_string);
if ($doc) {
$xml = simplexml_load_string($xml_string);
$json = json_encode($xml);
return json_decode($json, true);
}
}
then use like $array = xmlToArray($xmlData)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…