Continuing with the Zend Framework’s series, here’s another one – how to burn your data into RSS feed within ZF.
Fairly simple. Collect all the data into an array and than …
$feed = Zend_Feed::importArray($feedArray, 'rss'); $feed->send(); |
Continuing with the Zend Framework’s series, here’s another one – how to burn your data into RSS feed within ZF.
Fairly simple. Collect all the data into an array and than …
$feed = Zend_Feed::importArray($feedArray, 'rss'); $feed->send(); |