get_rss_feed php

<?php
$url = "https://www.youtube.com/feeds/videos.xml?channel_id=UCbMi18KmKXRb79716KgnVOA";
$xml = simplexml_load_file($url) or die("Error: Cannot create object");

//echo "number of entries: " . count($xml->entry) . "<br/>";
$i = 0;
while($i <= count($xml->entry)-1){
    //<id>yt:video:7AQdAE_Yhck</id>
    echo str_replace("yt:video:", "", $xml->entry[$i]->id[0])  . "<br/><br/>";
    //<title>Michigan Capitol Building Lansing Michigan</title>
    echo str_replace("yt:video:", "", $xml->entry[$i]->title[0])  . "<br/><br/>";
    //<author>
    //<name>Michigan Constitutional Crusader</name>
    echo str_replace("yt:video:", "", $xml->entry[$i]->author[0]->name[0])  . "<br/><br/>";
    //$result = $xml->xpath('*//media:group/media:description');
    //<yt:videoId>7AQdAE_Yhck</yt:videoId>
    echo $xml->xpath('*//yt:videoId')[$i]  . "<br/><br/>";
    //<media:starRating count="20" average="4.60" min="1" max="5"/>
    echo $xml->xpath('*//media:starRating/@count')[$i] ." ". $xml->xpath('*//media:starRating/@average')[$i]  . "<br/><br/>";
    //<media:description></media:description>
    echo $xml->xpath('*//media:description')[$i]  . "<br/><br/>";
    $i++;   
}

?>

4
2
Rubixphys12 15320 points

                                    &lt;?php
&nbsp;
function getFeed($feed_url) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;$content = file_get_contents($feed_url);
&nbsp;&nbsp;&nbsp;&nbsp;$x = new SimpleXmlElement($content);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;echo &quot;&lt;ul&gt;&quot;;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;foreach($x-&gt;channel-&gt;item as $entry) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo &quot;&lt;li&gt;&lt;a href='$entry-&gt;link' title='$entry-&gt;title'&gt;&quot; . $entry-&gt;title . &quot;&lt;/a&gt;&lt;/li&gt;&quot;;
&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;echo &quot;&lt;/ul&gt;&quot;;
}
?&gt;

4 (2 Votes)
0
Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source