search
HomeBackend DevelopmentPHP TutorialZend Framework Tutorial: Overview of Bootstrap Class Usage, zendbootstrap_PHP Tutorial

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
  • $application: Required.

    Accept a Zend_Application

    or a Zend_Application_Bootstrap_Bootstrapper object as the only parameter.

Construction method. Accepts one parameter, which must be a Zend_Application object or another boot object.

setOptions(
array $options)
Zend_Application_Bootstrap_Bootstrapper
  • $options: Required. Configuration options array

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
  • $resource: Optional.

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
  • $resource: Required, the requirement is the resource name.

    or Zend_Application_Resource_Resource object

  • $options: Optional. Array or Zend_Config object, passing the instance of the resource to be registered.

Used to register resource classes and pass resources through optional options

unregisterPluginResource($resource) Zend_Application_Bootstrap_ResourceBootstrapper
  • $resource: Required. Unregister the name of the resource

Delete plug-in resources

hasPluginResource($resource) Boolean
  • $resource: Required. Resource name.


getPluginResource($resource) Zend_Application_Resource_Resource
  • $resource: Required. Resource name


getPluginResourceNames() Array N/A


setPluginLoader(Zend_Loader_PluginLoader_Interface $loader) Zend_Application_Bootstrap_ResourceBootstrapper
  • $loader: Required.


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
  • $application: Required.

Accepts either a Zend_Application or a Zend_Application_Bootstrap_Bootstrapper object as the sole argument.

setOptions(array $options) Zend_Application_Bootstrap_Bootstrapper
  • $options: Required. Options array

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


Two additional, special options are also available.
pluginPaths is used to specify the resource plug-in path prefix, which should be an associative array of classes prefixed with the file system path.
Resources are used to specify resource plug-ins and should include configuration options for plug-in resource instances.

getOptions() Array N/A

hasOption($key) Boolean
  • $key: Required. .

getOption($key) Mixed
  • $key: Required.

Does not exist Returns NULL

setApplication(Zend_Application | Zend_Application_Bootstrap_Bootstrapper $application) Zend_Application_Bootstrap_BootstrapAbstract
  • $application必填.

 

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
  • $container,Required. Container object that stores resource objects


hasResource($name) Boolean
  • $name, Required. Resource name

getResource($name) Mixed
  • $name, Required. Resource name

bootstrap($resource = null) Mixed
  • $resource: Optional.

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
  • $method: Required. Method name.

  • $args: Required. Method parameter array.

For convenience, you can use 'bootstrap()' instead of bootstrap() to guide the registered resources.


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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1110091.htmlTechArticleZend 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_App...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
10款好看又实用的Bootstrap后台管理系统模板(快来下载)10款好看又实用的Bootstrap后台管理系统模板(快来下载)Aug 06, 2021 pm 01:55 PM

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

Microsoft NET Framework 安装问题 错误代码 0x800c0006 修复Microsoft NET Framework 安装问题 错误代码 0x800c0006 修复May 05, 2023 pm 04:01 PM

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

如何在 Windows 11/10 上使用 SetupDiag 识别 Windows 升级问题如何在 Windows 11/10 上使用 SetupDiag 识别 Windows 升级问题Apr 17, 2023 am 10:07 AM

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

7款实用响应式Bootstrap电商源码模板(快来下载)7款实用响应式Bootstrap电商源码模板(快来下载)Aug 31, 2021 pm 02:13 PM

好看又实用的Bootstrap电商源码模板可以提高建站效率,下面本文给大家分享7款实用响应式Bootstrap电商源码,均可免费下载,欢迎大家使用!更多电商源码模板,请关注php中文网电商源码​栏目!

SCNotification 已停止工作 [修复它的 5 个步骤]SCNotification 已停止工作 [修复它的 5 个步骤]May 17, 2023 pm 09:35 PM

作为Windows用户,您很可能会在每次启动计算机时遇到SCNotification已停止工作错误。SCNotification.exe是一个微软系统通知文件,由于权限错误和点网故障等原因,每次启动PC时都会崩溃。此错误也以其问题事件名称而闻名。因此,您可能不会将其视为SCNotification已停止工作,而是将其视为错误clr20r3。在本文中,我们将探讨您需要采取的所有步骤来修复SCNotification已停止工作,以免它再次困扰您。什么是SCNotification.e

8款Bootstrap企业公司网站模板(源码免费下载)8款Bootstrap企业公司网站模板(源码免费下载)Aug 24, 2021 pm 04:35 PM

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

bootstrap中sm是什么意思bootstrap中sm是什么意思May 06, 2022 pm 06:35 PM

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

Microsoft .NET Framework 4.5.2、4.6 和 4.6.1 将于 2022 年 4 月终止支持Microsoft .NET Framework 4.5.2、4.6 和 4.6.1 将于 2022 年 4 月终止支持Apr 17, 2023 pm 02:25 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

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.