News Feed
Jobs Feed
Sections




News Archive
Matthew Weier O'Phinney's Blog:
Applying FilterIterator to Directory Iteration
August 17, 2010 @ 10:29:38

New on his blog Matthew Weier O'Phinney has this post looking about using the FilterIterator (from PHP's SPL libraries) to work with (recursive) directory iteration.

I'm currently doing research and prototyping for autoloading alternatives in Zend Framework 2.0. One approach I'm looking at involves creating explicit class/file maps; these tend to be much faster than using the include_path, but do require some additional setup. [...] I'm well aware of RecursiveDirectoryIterator, and planned to use that. However, I also had heard of FilterIterator, and wondered if I could tie that in somehow. In the end, I could, but the solution was non-obvious.

He starts with what he thought he should be able to do with the FilterIterator - pass in a DirectoryIterator to be able to filter them recursively. Unfortunately this only worked for the first level, so he looked else where. His solution ultimately involved passing in a RecursiveIteratorIterator instance into the DirectoryIterator that contained his RecursiveDirectoryIterator. He includes a full code example in the post showing how to locate a certain file/class recursively inside a directory.

0 comments voice your opinion now!
iterator spl filteriterator directory tutorial


blog comments powered by Disqus

Similar Posts

DevShed: The mysqli Extension and the Active Record Pattern

WebReference.com: Database-enabled Ajax with PHP

Adam Pullen's Blog: Execution Filters in Symfony

Rob Allen's Blog: Accessing your configuration data in application.ini

Alex Simonenko's Blog: Installing PHP 5.3.6 on OS X Lion


Community Events









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


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

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