Neden Zend Bootstrap autoloading fonksiyonundaki bu 2 satır

0 Cevap php

Ben kodu ve 2 satır BELKİ DEĞİL yorumladı yoktu diğer örnekler bu bloğu vardır örneklerini gördüm. Bu 2 satırların amacı tam olarak nedir?

$moduleLoader = new Zend_Application_Module_Autoloader(array(
    'namespace' => '',
    'basePath' => APPLICATION_PATH)
);


$autoloader = Zend_Loader_Autoloader::getInstance(); //MAYBE NOT
$autoloader->setFallbackAutoloader(true);      //MAYBE NOT

return $moduleLoader;

Eklendi:

given the answers, is it a good thing to do it this way? Is there overhead or anything that's not good about it, or is this the standard practice?

0 Cevap