public function Rss::getAuthor in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php \Zend\Feed\Reader\Entry\Rss::getAuthor()
- 8.0 vendor/zendframework/zend-feed/src/Reader/Feed/Rss.php \Zend\Feed\Reader\Feed\Rss::getAuthor()
Same name and namespace in other branches
- 8 vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php \Zend\Feed\Reader\Entry\Rss::getAuthor()
Get an author entry
Parameters
int $index:
Return value
string
Overrides EntryInterface::getAuthor
File
- vendor/
zendframework/ zend-feed/ src/ Reader/ Entry/ Rss.php, line 71
Class
Namespace
Zend\Feed\Reader\EntryCode
public function getAuthor($index = 0) {
$authors = $this
->getAuthors();
if (isset($authors[$index])) {
return $authors[$index];
}
return;
}