0 votes
in Zend Framework by
What does autoloader in Zend Framework?

1 Answer

0 votes
by

The Zend Framework has the default Zend_Loader_Autoloader, that's called autoloader. The autoloader ends the need to include the file manually. Whenever any class or interface is called, the autoloader is called automatically to load all the objects.

...