* @author Alex Lushpai */ class Autoloader { /** * File extension as a string. Defaults to ".php". */ protected static $fileExt = '.php'; /** * The top level directory where recursion will begin. * */ protected static $pathTop; /** * Autoload function for registration with spl_autoload_register * * Looks recursively through project directory and loads class files based on * filename match. * * @param string $className */ public static function loader($className) { $directory = new RecursiveDirectoryIterator(self::$pathTop); $fileIterator = new RecursiveIteratorIterator($directory); $filename = $className . self::$fileExt; foreach ($fileIterator as $file) { if (strtolower($file->getFilename()) === strtolower($filename) && $file->isReadable()) { include_once $file->getPathname(); } } } /** * Sets the $fileExt property * * @param string $fileExt The file extension used for class files. Default is "php". */ public static function setFileExt($fileExt) { self::$fileExt = $fileExt; } /** * Sets the $path property * * @param string $path The path representing the top level where recursion should * begin. Defaults to the current directory. */ public static function setPath($path) { self::$pathTop = $path; } } Autoloader::setPath(realpath(dirname(__FILE__))); Autoloader::setFileExt('.php'); spl_autoload_register('Autoloader::loader');