


Zend Framework Tutorial: Overview of Bootstrap class usage, zendbootstrap
This article describes the usage of Bootstrap class in Zend Framework with examples. 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 a single resource or the entire application), and running the application.
Interface methods:
Zend_Application_Bootstrap_Bootstrapper Interface
Method | Return Value | Parameters | Description |
---|---|---|---|
__construct( $application ) |
Void |
|
Construction method. Accepts one parameter, which must be a Zend_Application object or another boot object. |
setOptions( array $options) |
Zend_Application_Bootstrap_Bootstrapper |
|
Usually, options can be matched and mapped to the corresponding setter; otherwise, the options will just be stored for easy retrieval later |
getApplication() | Zend_Application |Zend_Application_Bootstrap_Bootstrapper | N/A |
Get application instance |
getEnvironment() | String | N/A |
Get environment |
getClassResources() | Array | N/A |
Get available resources |
bootstrap($resource = null) | Mixed |
|
If $resource is empty, register all resources . If it is a string, register the specified resource; if it is an array, only register the specified resource. |
run() | Void | N/A |
Execute boot. |
Zend_Application_Bootstrap_ResourceBootstrapper
Zend_Application_Bootstrap_ResourceBootstrapper is an interface used to bootstrap class loading to register external resources. That is, one or more resources will not be defined directly in the class, but will be introduced through plug-ins. It should be used in conjunction with Zend_Application_Bootstrap_Bootstrapper; Zend_Application_Bootstrap_BootstrapAbstract implements this functionality.
Interface methods:
Zend_Application_Bootstrap_ResourceBootstrapper Interface
Method | Return Value | Parameters | Description |
---|---|---|---|
registerPluginResource($resource, $options = null) | Zend_Application_Bootstrap_ResourceBootstrapper |
|
Used to register resource classes and pass resources through optional options |
unregisterPluginResource($resource) | Zend_Application_Bootstrap_ResourceBootstrapper |
|
Delete plug-in resources |
hasPluginResource($resource) | Boolean |
|
|
getPluginResource($resource) | Zend_Application_Resource_Resource |
|
|
getPluginResourceNames() | Array | N/A |
|
setPluginLoader(Zend_Loader_PluginLoader_Interface $loader) | Zend_Application_Bootstrap_ResourceBootstrapper |
|
|
getPluginLoader() | Zend_Loader_PluginLoader_Interface | N/A |
|
Zend_Application_Bootstrap_BootstrapAbstract
Zend_Application_Bootstrap_BootstrapAbstract is an abstract class that provides a common basic boot function. It implements Zend_Application_Bootstrap_Bootstrapper and Zend_Application_Bootstrap_ResourceBootstrapper.
Zend_Application_Bootstrap_BootstrapAbstract Methods
Method | Return Value | Parameters | Description |
---|---|---|---|
__construct($application) | Void |
|
Accepts either a Zend_Application or a Zend_Application_Bootstrap_Bootstrapper object as the sole argument. |
setOptions(array $options) | Zend_Application_Bootstrap_Bootstrapper |
|
All options can be mapped to option-specified setters, Otherwise, the option will simply be stored for later lookup For example, if you define a setFoo() method in an extension class, you can pass the value through the foo option |
getOptions() | Array | N/A |
|
hasOption($key) | Boolean |
|
|
getOption($key) | Mixed |
|
Does not exist Returns NULL |
setApplication(Zend_Application | Zend_Application_Bootstrap_Bootstrapper $application) | Zend_Application_Bootstrap_BootstrapAbstract |
|
|
getApplication() | Zend_Application |Zend_Application_Bootstrap_Bootstrapper | N/A |
|
getEnvironment() | String | N/A |
|
getClassResources() | Array | N/A |
|
getContainer() | Object | N/A |
Get the container in which the resource is stored. If there is no container, you can register it through Zend_Registry and then return a Zend_Registry instance. |
setContainer($container) | Zend_Application_Bootstrap_BootstrapAbstract |
|
|
hasResource($name) | Boolean |
|
|
getResource($name) | Mixed |
|
|
bootstrap($resource = null) | Mixed |
|
If $resource is empty, register all resources . If it is a string, register the specified resource; if it is an array, only register the specified resource. |
run() | Void | N/A |
|
__call($method, $args) | Mixed |
|
For convenience, you can use 'bootstrap |
Zend_Application_Bootstrap_Bootstrap
Zend_Application_Bootstrap_Bootstrap is the specific implementation of Zend_Application_Bootstrap_BootstrapAbstract. Its main function is to register resources and then run the run() method.
In most cases, you can inherit this class or use this class directly according to your boot needs and register resource plug-ins.
Enable Application auto-loading function
In addition, the bootstrap implementation provides the ability to automatically load a specified "namespace" or a prefix of a specified resource class
Essentially, it instantiates a Zend_Application_Module_Autoloader object with the namespace and directory of the boot class as parameters. This feature can be turned on by setting the namespace through the "appnamespace" configuration option.
As an INI example:
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'; }
Readers who are interested in more zend-related content can check out the special topics of this site: "Zend FrameWork Framework Introductory Tutorial", "php Excellent Development Framework Summary", "Yii Framework Introduction and Summary of Common Techniques", "ThinkPHP Introductory Tutorial" , "php object-oriented programming introductory tutorial", "php mysql database operation introductory tutorial" and "php common database operation skills summary"
I hope this article will be helpful to everyone in PHP programming.
Articles you may be interested in:
- Summary of precautions related to Zend Framework custom Helper class
- Detailed explanation of usage examples of Resources (Resources) in Zend Framework tutorial
- Zend Framework Tutorial Detailed Explanation of Application and Bootstrap Usage
- Zend Framework Tutorial Configuration File Application.ini Analysis
- Zend Framework Tutorial Detailed Explanation of Loader and PluginLoader Usage
- Zend Framework Detailed explanation of the usage of Autoloading in the tutorial
- Usage example of Resource Autoloading in the Zend Framework tutorial
- Analysis of the usage of Controller in the MVC framework of the Zend Framework tutorial
- The road to the Zend Framework tutorial is explained in detail by the function Zend_Controller_Router
- Zend Framework Tutorial: Detailed Explanation of the Zend_Controller_Plugin Plugin Usage
- Zend Framework Tutorial: Detailed Explanation of the Encapsulation of Response Objects Zend_Controller_Response Instances
- Zend Framework Tutorial: Detailed Explanation of the Action Base Class Zend_Controller_Action
- Zend Framework tutorial front-end controller Zend_Controller_Front usage detailed explanation
- Zend Framework tutorial Application usage example detailed explanation

一个好的网站,不能只看外表,网站后台同样很重要。本篇文章给大家分享10款好看又实用的Bootstrap后台管理系统模板,可以帮助大家快速建立强大有美观的网站后台,欢迎下载使用!如果想要获取更多后端模板,请关注php中文网后端模板栏目!

.NETFramework4是开发人员和最终用户在Windows上运行最新版本的应用程序所必需的。但是,在下载安装.NETFramework4时,许多用户抱怨安装程序在中途停止,显示以下错误消息-“ .NETFramework4hasnotbeeninstalledbecauseDownloadfailedwitherrorcode0x800c0006 ”。在您的设备上安装.NETFramework4时,如果您也在体验它,那么您就来对了地方

每当您的Windows11或Windows10PC出现升级或更新问题时,您通常会看到一个错误代码,指示故障背后的实际原因。但是,有时,升级或更新失败可能不会显示错误代码,这时就会出现混淆。有了方便的错误代码,您就可以确切地知道问题出在哪里,因此您可以尝试修复。但是由于没有出现错误代码,因此识别问题并解决它变得极具挑战性。这会占用您大量时间来简单地找出错误背后的原因。在这种情况下,您可以尝试使用Microsoft提供的名为SetupDiag的专用工具,该工具可帮助您轻松识别错误背后的真

好看又实用的Bootstrap电商源码模板可以提高建站效率,下面本文给大家分享7款实用响应式Bootstrap电商源码,均可免费下载,欢迎大家使用!更多电商源码模板,请关注php中文网电商源码栏目!
![SCNotification 已停止工作 [修复它的 5 个步骤]](https://img.php.cn/upload/article/000/887/227/168433050522031.png)
作为Windows用户,您很可能会在每次启动计算机时遇到SCNotification已停止工作错误。SCNotification.exe是一个微软系统通知文件,由于权限错误和点网故障等原因,每次启动PC时都会崩溃。此错误也以其问题事件名称而闻名。因此,您可能不会将其视为SCNotification已停止工作,而是将其视为错误clr20r3。在本文中,我们将探讨您需要采取的所有步骤来修复SCNotification已停止工作,以免它再次困扰您。什么是SCNotification.e

好看又实用的企业公司网站模板可以提高您的建站效率,下面PHP中文网为大家分享8款Bootstrap企业公司网站模板,均可免费下载,欢迎大家使用!更多企业站源码模板,请关注php中文网企业站源码栏目!

在bootstrap中,sm是“小”的意思,是small的缩写;sm常用于表示栅格类“.col-sm-*”,是小屏幕设备类的意思,表示显示大小大于等于768px并且小于992px的屏幕设备,类似平板设备。

已安装Microsoft.NET版本4.5.2、4.6或4.6.1的MicrosoftWindows用户如果希望Microsoft将来通过产品更新支持该框架,则必须安装较新版本的Microsoft框架。据微软称,这三个框架都将在2022年4月26日停止支持。支持日期结束后,产品将不会收到“安全修复或技术支持”。大多数家庭设备通过Windows更新保持最新。这些设备已经安装了较新版本的框架,例如.NETFramework4.8。未自动更新的设备可能


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
