I think that you can loop the children of $media
and then get the attributes()
from the thumbnail.
Maybe this setup can help you:
<?php
$url = "https://www.youtube.com/feeds/videos.xml?user=XLLease";
$rss = simplexml_load_file($url);
//getNamespaces
$ns=$rss->getNamespaces(true);
foreach($rss->entry as $entry) {
//set children of namespaces
$yt=$entry->children($ns['yt']);
$media=$entry->children($ns['media']);
foreach ($media as $value) {
$url = $value->thumbnail->attributes()->url->__toString();
}
}