News Feed
Jobs Feed
Sections




News Archive
Joshua Thijssen's Blog:
SPL Using the iteratorAggregate interface
December 06, 2011 @ 08:28:45

Joshua Thijssen has a recent post spotlighting a part of the Standard PHP Library (SPL) that implements that Traversable interface, the IteratorAggregate interface.

Together with its more famous brother "Iterator", they are currently the two only implementations of the "Traversable" interface, which is needed for objects so they can be used within a standard foreach() loop. But why and when should we use the iteratorAggregate?

He answers his question with an example - a book that contains chapters. With a normal iterator you'd have to define standard functions (like valid, rewind or key). Using the IteratorAggregate you can push items into an internal array (like chapters in a book) and call a "getIterator" method to get this set. He also takes it one step further and shows implementing the "Count" interface to make it easier to get a total count of the items in the iterator. Sample code is included to help clarify.

0 comments voice your opinion now!
spl iteratoraggregate interface traversable count


blog comments powered by Disqus

Similar Posts

Padraic Brady's Blog: Interfacing The PHP World Would Be Good

Paul Jones\' Blog: Fluent Interfaces Require Fluent Situations

Charles Rowe's Blog: The Four Major Benefits of MySQLi

PHPMaster.com: Decoupling Interfaces from Implementation - Using Separated Interfaces

DevShed: User-defined Interfaces in PHP 5 - Turning MySQL Classes into Interface Implementers


Community Events









Don't see your event here?
Let us know!


example development podcast phpunit zendframework2 object tool community unittest database testing framework code release api interview language opinion introduction composer

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework