SimplePie 1.5 is now available!

SimplePie Documentation.  Learn how to use this thing.  It's way better than going to school.

You are here: Documentation » API Reference » SimplePie » get_all_discovered_feeds()

get_all_discovered_feeds()

Description

class SimplePie {
	get_all_discovered_feeds ()
}

Returns an array of SimplePie_File objects, pointing to feeds found during the autodiscovery process.

Availability

  • Available since SimplePie 1.2.
  • Available since r1051

Examples

Loop through each item and do something with each

<?php
require_once('../simplepie.inc');
 
$feed = new SimplePie('http://simplepie.org/wiki/reference/simplepie/get_all_discovered_feeds');
 
foreach ($feed->get_all_discovered_feeds() as $link)
{
	echo $link->url . "<br />";
}
?>

See Also


reference/simplepie/get_all_discovered_feeds.txt · Last modified: 2011/03/06 03:56 (external edit)