dgmike
10/31/2012 - 6:13 PM

PHP: Autoloader Class

PHP: Autoloader Class

<?php

class Autoloader
{
    static public function register()
    {
        ini_set('unserialize_callback_func', 'spl_autoload_call');
        spl_autoload_register(array(new self, 'autoload'));
    }

    static public function autoload($className)
    {
    }
}