I have this RSS feed which has something like
<item>
<media:content url="https://blabla.jpg" type="image/jpeg" medium="image"></media:content>
<media:content url="https://blabla2.jpg" type="image/jpeg" medium="image"></media:content>
<item\>
Normally I would grab it like this:
$item->{'media:content'}->attributes()->url;
I would like to get the 2nd media content url. But because there are two of them it's not working. Is anyone willing to help a brother out? Thanks!