Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

DevShed:
Using Directory Iterators to Build Loader Apps in PHP
Jul 06, 2009 @ 15:17:11

DevShed finishes off their "loader" series of tutorials today with this eighth part focusing on the use of Directory Iterators.

Here's where the SPL comes in, since it's possible to use a combination of its "spl_autoload_register()" function and its RecursiveDirectoryIterator class to refactor the method in question and make it shorter and tighter. In this final chapter of the series I'm going to improve the loader class developed in the previous one by incorporating some of the aforementioned SPL functions and classes.

They change up their code to use a RecursiveDirectoryIterator inside of their __autoload to remove their custom recursive code.

tagged: tutorial autoload recursive iterator directory spl

Link:


Trending Topics: