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_Item » get_authors()

get_authors()

Description

class SimplePie_Item {
	get_authors ( [int $start = 0],  [int $length = 0] )
}

Returns an array of SimplePie_Author objects that were found for the item, which can be looped through.

Availability

  • Available since SimplePie Beta 2.

Parameters

start

The number of the item you want to start at. Remember that arrays begin with 0, not 1.

length

The number of items to return. 0 will return all. The start parameter is required if this is used.

Examples

Loop through each item and do something with each

$feed = new SimplePie();
$feed->set_feed_url('http://simplepie.org/blog/feed/');
$feed->init();
$feed->handle_content_type();
 
foreach ($feed->get_items() as $item)
{
	foreach ($item->get_authors() as $author)
	{
		echo $author->get_name();
	}
}

See Also


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