ZF-3848: Implement "Countable" interface
Description
The "Countable" should implemented so the following code would work :
<?php
$channel = new Zend_Feed_Rss('http://rss.example.com/channelName');
echo count($channel);
The "Countable" should implemented so the following code would work :
<?php
$channel = new Zend_Feed_Rss('http://rss.example.com/channelName');
echo count($channel);
Comments
Posted by Jean-Marc Fontaine (jmf) on 2008-08-04T08:06:42.000+0000
This patch implements the "Countable" interface and contains the corresponding unit test.
Posted by Pádraic Brady (padraic) on 2009-09-18T15:16:24.000+0000
Added in r18292