The example in this article describes the usage of Bootstrap class in Zend Framework. Share it with everyone for your reference, the details are as follows:
Zend_Application_Bootstrap_Bootstrapper
Zend_Application_Bootstrap_Bootstrapper is the basic interface that all boot classes must implement. The basic functionality is for configuring, registering resources, bootstrapping (either individual resources or the entire application), and running the application.
Interface method:
Zend_Application_Bootstrap_Bootstrapper Interface
##Zend_Application_Bootstrap_ResourceBootstrapper##Zend_Application_Bootstrap_BootstrapAbstract
Zend_Application_Bootstrap_BootstrapAbstract is An abstract class that provides a common bootstrap basic functionality. It implements Zend_Application_Bootstrap_Bootstrapper and Zend_Application_Bootstrap_ResourceBootstrapper.
Zend_Application_Bootstrap_BootstrapAbstract Methods
#Zend_Application_Bootstrap_Bootstrap
Zend_Application_Bootstrap_Bootstrap is Zend_Application_Bootstrap_BootstrapAbstract specific implementation. Its main function is to register resources and then run the run() method.
appnamespace = "Application"Or in XML:
<appnamespace>Application</appnamespace>By default, Zend_Tool provides the "Application" namespace. Alternatively, you can specify the namespace through the $_appNamespace attribute in the bootstrap class.
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap { protected $_appNamespace = 'Application'; }I hope this article will be helpful to everyone in PHP programming. For more articles related to Zend Framework Tutorial Overview of Bootstrap Class Usage, please pay attention to the PHP Chinese website!