Beispiel #1
0
 * @package    Autoloader
 * @subpackage AutoloadAPI
 * @author     Markus Malkusch <*****@*****.**>
 * @copyright  2009 - 2010 Markus Malkusch
 * @license    http://php-autoloader.malkusch.de/en/license/ GPL 3
 * @version    SVN: $Id$
 * @link       http://php-autoloader.malkusch.de/en/
 */
/**
 * Require the needed class
 */
require_once dirname(__FILE__) . '/AutoloadAPI_Old.php';
/**
 * The class constructor is called.
 */
AutoloadAPI::classConstructor();
/**
 * A wrapper for the spl_autoload functions
 *
 * This class implements the singleton pattern. getInstance() returns
 * the propriate class for the PHP environment.
 * That's because in PHP < 5.2.11 spl_autoload_functions() didn't return objects.
 *
 * @category   PHP
 * @package    Autoloader
 * @subpackage AutoloadAPI
 * @author     Markus Malkusch <*****@*****.**>
 * @license    http://php-autoloader.malkusch.de/en/license/ GPL 3
 * @version    Release: 1.11
 * @link       http://php-autoloader.malkusch.de/en/
 * @see        spl_autoload_functions()