You are here: Documentation » API Reference » SimplePie » get_author()
Table of Contents
get_author()
Description
class SimplePie { get_author ( [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
Get an author for the feed.
$feed = new SimplePie(); $feed->set_feed_url('http://simplepie.org/blog/feed/'); $feed->init(); $feed->handle_content_type(); if ($author = $feed->get_author()) { echo $author->get_name(); }
See Also
reference/simplepie/get_author.txt · Last modified: 2011/03/06 03:56 (external edit)