nickjonnes Posted June 5, 2011 Share Posted June 5, 2011 hey all i im trying to get the video link from this attom feed so far i have been sucessfull although i only want the first one not a whole list of themcan anyone help me here is my code. <?php $xml = simplexml_load_file('http://video.news.com.au/feed.atom'); foreach( $xml->entry as $entry ) { echo "Link - {$entry->link->attributes()->href}<br>"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/238475-getting-just-one-element/ Share on other sites More sharing options...
JAY6390 Posted June 5, 2011 Share Posted June 5, 2011 <?php $xml = simplexml_load_file('http://video.news.com.au/feed.atom'); foreach( $xml->entry as $entry ) { echo "Link - {$entry->link->attributes()->href}<br>"; break; } ?> or possibly just <?php $xml = simplexml_load_file('http://video.news.com.au/feed.atom'); echo "Link - {$xml->entry[0]->link->attributes()->href}<br>"; ?> Quote Link to comment https://forums.phpfreaks.com/topic/238475-getting-just-one-element/#findComment-1225434 Share on other sites More sharing options...
salathe Posted June 6, 2011 Share Posted June 6, 2011 If you want just the first entry's link, then the following is the SimpleXML way (putting the simple back in there). $xml = simplexml_load_file('http://video.news.com.au/feed.atom'); echo $xml->entry->link['href']; Quote Link to comment https://forums.phpfreaks.com/topic/238475-getting-just-one-element/#findComment-1225762 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.