Voici mon cours sur les chargeurs automatiques. J'apprends le PHP depuis cette semaine. J'ai eu l'idée de l'auto chargeur à partir de différents articles et du livre PHP in action, mais je n'ai aucune idée de la façon dont il fonctionnera réellement ?
class autoloader {
public static $loader;
public static function init()
{
if(self::$loader == NULL) {
self::$loader = new self();
}
return self::$loader;
}
public function __construct()
{
spl_autoload_register(array(this, 'library'));
spl_autoload_register(array(this, 'controller'));
spl_autoload_register(array(this, 'helper'));
spl_autoload_register(array($this, 'model'));
}
public function library($class)
{
set_include_path(get_include_path() . PATH_SEPARATOR . '/lib');
spl_autoload_extensions('.php');
spl_autoload($class);
}
public function controller($class)
{
set_include_path(get_include_path() . PATH_SEPARATOR . '/controller');
spl_autoload_extensions('.php');
spl_autoload($class);
}
public function helper($class)
{
set_include_path(get_include_path() . PATH_SEPARATOR . '/helper');
spl_autoload_extensions('.php');
spl_autoload($class);
}
public function model($class)
{
set_include_path(get_include_path() . PATH_SEPARATOR . '/model');
spl_autoload_extensions('.php');
spl_autoload($class);
}
}
Je voudrais demander comment fonctionne exactement cet autoloader ? Par exemple, si j'instancie une classe qui se trouve dans le dossier Lobrary, comment le fichier complet sera-t-il traité ? comment ce fichier complet sera-t-il traité ?