Skip to main content

RSS::fetch

Start loading RSS feed

Description

public self RSS::fetch()

Example

Controller
$rss = $this->getClass('Tool/RSS', 'https://example.com/feed');

while ($post = $rss->fetch()) {
// Use $post
}