Up to this point I've used procedural standalone autoloader functions and registered them with spl_autoload_register() to automatically load my (usually) namespaced classes. Lately, though, I've noticed people mentioning the use of autoloader classes in conjuction with some of the prominent PHP frameworks.
Almost all of my code is object oriented these days, but I don't really see advantages to using a class "Autoloader" over a basic function in this instance. And in terms of testability, I feel pretty good about using class_exists() checks in my tests to verify that the procedural functions load files correctly.
So my questions are three:
- What advantages or features (if any) might sway me to refactor things and start using a full blown object to autoload class files?
- Am I missing some glaring advantages here outside the obvious OOP features?
- Could you please make a case for either procedural or class autoloaders?
UPDATE
Below is some example code for a typical autoload function I might employ. It's metacode, so don't look for typos. I organize my directory structures so that they mirror the namespaces. The hypothetical explode_namespaces() function could theoretically be included as a static method alongside a static autoload() method in a class, so that's one benefit. It might be cleaner to combine these disparate "utility" functions as methods in a single class.
function autoload($class_name)
{
$root = APP_LIBS; // a directory path constant set at config time
if ($namespaces = explode_namespaces($class_name)) {
$domain = array_shift($namespaces);
$root .= "/$domain/";
$class_name = array_pop($namespaces);
$directories = array();
foreach ($namespaces as $directory) {
$directories[] = $directory;
}
$root .= implode($directories, '/');
}
$file = "$root/$class_name.php";
if (file_exists($file)) {
include $file;
}
}
ANSWER/SOLUTION
As @mario pointed out, this question is really just comparing functions to methods. In the end, the benefit in my case was an improvement in code design. By using an autoloader class I was able to eliminate some standalone "utils" functions employed by my procedural autoload function and place them where they belonged: inside a single Autoloader class. Also, because my autoloader requires a config class dependency, I was able to include support for its injection into the class as well. For anyone who is interested, I've posted my resulting Autoloader class code below.
<?php
/**
* MyFrame Autoloader Class File
*
* PHP version 5
*
* @category MyFrame
* @package Core
* @author Daniel Lowrey <rdlowrey@gmail.com>
*/
namespace MyFrame {
/**
* MyFrame class autoloader
*
* @category MyFrame
* @package Core
* @author Daniel Lowrey <rdlowrey@gmail.com>
*/
class Autoloader
{
/**
* Config instance
* @var \MyFrame\Config object
*/
protected static $cfg;
/**
* Setter for object's static $cfg dependency
*
* @param \MyFrame\Config $cfg Config object
*
* @return void
*/
public static function set_cfg(\MyFrame\Config $cfg)
{
self::$cfg = $cfg;
}
/**
* Getter for object's $cfg property
*
* @return \MyFrame\Config Config object
*/
public static function get_cfg()
{
return self::$cfg;
}
/**
* Class autoload function
*
* @param string $cls Class name
*
* @return mixed Include filename if loaded -or- NULL if no file loaded
*/
public static function autoload($cls)
{
// If config hasn't been injected, we can't autoload libs
if ( ! self::$cfg) {
return NULL;
}
$cls = ltrim($cls, '\\');
$root = self::$cfg->app_dir_lib;
if ($namespaces = self::get_namespaces($cls)) {
$domain = array_shift($namespaces);
$root.= "/$domain/";
$cls = array_pop($namespaces);
$directories = array();
foreach ($namespaces as $directory) {
$directories[] = $directory;
}
$root.= implode($directories, '/');
}
$file = "$root/$cls.php";
if (file_exists($file)) {
include $file;
return $file;
}
return NULL;
}
/**
* Helper function for autoloading namespaced classes
*
* @param string $cls Optionally namespaced class name
*
* @return array List of namespace levels or NULL if none found
*/
public static function get_namespaces($cls)
{
if (self::has_namespace($cls)) {
return explode('\\', $cls);
}
return NULL;
}
/**
* Determines if a class name contains a namespace element
*
* @param string $cls Class name
*
* @return boolean
*/
public static function has_namespace($cls)
{
if (strpos($cls, '\\') !== FALSE) {
return TRUE;
}
return FALSE;
}
}
}
?>
