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_contributor()

get_contributor()

Description

class SimplePie_Item {
	get_contributor ( [int $key = 0] )
}

Returns a single array location containing a SimplePie_Author object.

Availability

  • Available since SimplePie 1.1.

Parameters

key

The item that you want to return. Remember that arrays begin with 0, not 1.

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)
{
	if ($contributor = $item->get_contributor())
	{
		echo $contributor->get_name();
	}
}

See Also


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