Quantcast
Channel: get url attribute of rss feed - Stack Overflow
Viewing all articles
Browse latest Browse all 2

Answer by The fourth bird for get url attribute of rss feed

$
0
0

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();
    }
}

Viewing all articles
Browse latest Browse all 2

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>