I use Zend Framework to read an RSS feed is as simple as instantiating a Zend_Feed_Rss object with the URL of the feed :
$feed = new Zend_Feed_Rss('http://rss.exemple.com/feed');
echo $feed->title();
This method doesn't exists
echo $feed->version();
How I can get the version of Rss, like 2.0 or 0.92 ?