News Feed
Jobs Feed
Sections




News Archive
PHPMaster.com:
Using SPL Iterators, Part 2
May 22, 2012 @ 08:23:17

On PHPMaster.com today they've posted the second part of the series covering the Iterators that come with PHP as a part of the SPL.

In part one of this series I introduced you to some of the SPL Iterators and how to use them. There may be times however when the provided iterators are insufficient for your needs and you'll want to roll your own custom iterator. Luckily, SPL provides interfaces that will allow you to do just that. For an object to be traversable in a foreach loop, PHP requires that it be an instance of Traversable. You cannot however implement this interface directly (though you can use it in instaceof checks); instead you'll need to implement either SPL's Iterator or IteratorAggregate interfaces.

He shows you how to implement these two interfaces in your own custom classes, looping through a set of books for the Iterator example and a "getIterator" method that creates an ArrayIterator when executed. The results of both are used in foreach loops showing how they can be used just like any other iteratable variables.

0 comments voice your opinion now!
spl iterators tutorial array iterator iteratoraggregate foreach


blog comments powered by Disqus

Similar Posts

Lorna Mitchell's Blog: Building A RESTful PHP Server: Routing the Request

PHPMaster.com: Web Routing in PHP with Aura.Router

DevShed: Performing Full-text and Boolean Searches with MySQL

Prism-Perfect.net: PHP Tag Cloud Tutorial

Anthony Wlodarski's Blog: Node.js and Zend Auth with Sessions stored in the database


Community Events











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


functional development rest interview conference database phpunit release language introduction community zendframework2 testing usergroup opinion series unittest podcast framework symfony2

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