Following the above article
Post the code
$front = Zend_Controller_Front::getInstance();
Zend_Layout::startMvc(array('layoutPath' => USVN_LAYOUTS_DIR));
$front->setRequest(new Zend_Controller_Request_Http());
$front->throwExceptions(true);
$front->setBaseUrl($config->url->base);
$router = new Zend_Controller_Router_Rewrite();
$ routes_config = new USVN_Config_Ini(USVN_ROUTES_CONFIG_FILE, USVN_CONFIG_SECTION);
$router->addConfig($routes_config, 'routes');
$front->setRouter($router);
$front-> setControllerDirectory(USVN_CONTROLLERS_DIR);
$front->dispatch();
In the previous article, I have finished reading the first two sentences of getInstance and startMvc functions . The following is to continue to analyze the subsequent code
setRequest($request) This is to determine whether the request is inherited from Zend_Controller_Request_Abstract. If so, assign the value of front's _request to it.
Here you need to understand what Zend_Controller_Request_Abstract is. It is an abstract class that abstracts all requests. Zend has provided two implementation classes, Zend_Controller_Request_Http and Zend_Controller_Request_Simple. Generally, when we build servers, we use http requests, so if your project needs to inherit again, it usually directly inherits Zend_Controller_Request_Http.
In Zend_controller_Request_Http, the usual Http options such as getQuery, getCookie, getRequestUri, getBasePath, getParams, getHeader, etc. that we often use are already available.
Continue to talk about its base class Zend_Controller_Request_Abstract. The methods of this class include:
Back to code
$front->setRequest(new Zend_Controller_Request_Http()); The constructor of Zend_Controller_Request_Http is called here. When the constructor is called for the first time, it is $this->setRequestUri(); many of the setRequestUri are direct Use the data in the PHP global variable $_SERVER to get the requestUri.
What you can learn from setRequestUri is how to obtain requestUri in different servers (especially the different variable combinations in $SERVER in IIS have different meanings), such as http://172.23.11.160/usvn/item/ usvn_test This url, its requestUri is /usvn/item/usvn_test
$front->throwExceptions(true); Set the internal _throwExceptions flag to true;
$front->setbaseUrl("/usvn") does two things. First, it sets the internal _baseUrl attribute of front. Second, it calls setBaseUrl of Request, which also sets the internal _baseUrl attribute of Zend_Controller_Request_Http.
$router = new Zend_Controller_Router_Rewrite();
$routes_config = new USVN_Config_Ini(USVN_ROUTES_CONFIG_FILE, USVN_CONFIG_SECTION);
$router->addConfig($routes_config, 'routes');
$front->setRouter($router);
The following three lines directly state that they actually use Zend’s Router module to use the configuration file. The router uses setRouter and is placed in the front.
Last sentence
$front->dispatch();
This function is also the most core function.
This function first registers a plug-in Zend_Controller_Plugin_ErrorHandler with an index of 100 and puts the plug-in order at the end.
The second step stores a Helper, Zend_Controller_Action_Helper_ViewRenderer, with an index of -80
Request is instantiated below, and request is a Zend_Controller_Request_Http type. And set the baseUrl of the request to the _baseUrl set previously, which is "/usvn/item/usvn_test"
Then the response is instantiated, and the response is a Zend_Controller_Response_Http();
The following uses plugins to set Request and Response. First, the setRequest function of Zend_Controller_Plugin_Broker is actually called. This function loops through all the plugins managed by the broker and calls the setRequest($request) function of the plugin (if any).
Next, initialize the router and set the parameters of the router. The router has been set previously, which is the Zend_Controller_Router_Rewrite type
Initialize the dispatcher dispatcher. We see the dispatcher for the first time, the Zend_Controller_Dispatcher_Standard class. Distributors will be discussed later.
The following process:
Call the routeStartup of the plug-in to process the request
Call the router’s route to handle the request
Call the plugin’s routeShutdown to process the request
Call the dispatchLoopStartup of the plug-in to process the request
Enter the cycle distribution process
Call the preDispatch of the plug-in to process the request
Call dispatcher’s dispatch to process request and response
Call the plug-in’s postDispatch to process the request
Get out of the loop distribution process
Call the plugin’s dispatchLoopShutdown to process the request
Send response

技嘉的主板怎么设置键盘开机首先,要支持键盘开机,一定是PS2键盘!!设置步骤如下:第一步:开机按Del或者F2进入bios,到bios的Advanced(高级)模式普通主板默认进入主板的EZ(简易)模式,需要按F7切换到高级模式,ROG系列主板默认进入bios的高级模式(我们用简体中文来示范)第二步:选择到——【高级】——【高级电源管理(APM)】第三步:找到选项【由PS2键盘唤醒】第四步:这个选项默认是Disabled(关闭)的,下拉之后可以看到三种不同的设置选择,分别是按【空格键】开机、按组

1.处理器在选择电脑配置时,处理器是至关重要的组件之一。对于玩CS这样的游戏来说,处理器的性能直接影响游戏的流畅度和反应速度。推荐选择IntelCorei5或i7系列的处理器,因为它们具有强大的多核处理能力和高频率,可以轻松应对CS的高要求。2.显卡显卡是游戏性能的重要因素之一。对于射击游戏如CS而言,显卡的性能直接影响游戏画面的清晰度和流畅度。建议选择NVIDIAGeForceGTX系列或AMDRadeonRX系列的显卡,它们具备出色的图形处理能力和高帧率输出,能够提供更好的游戏体验3.内存电

主板上SPDIFOUT连接线序最近我遇到了一个问题,就是关于电线的接线顺序。我上网查了一下,有些资料说1、2、4对应的是out、+5V、接地;而另一些资料则说1、2、4对应的是out、接地、+5V。最好的办法是查看你的主板说明书,如果找不到说明书,你可以使用万用表进行测量。首先找到接地,然后就可以确定其他的接线顺序了。主板vdg怎么接线连接主板的VDG接线时,您需要将VGA连接线的一端插入显示器的VGA接口,另一端插入电脑的显卡VGA接口。请注意,不要将其插入主板的VGA接口。完成连接后,您可以

广联达软件是一家专注于建筑信息化领域的软件公司,其产品被广泛应用于建筑设计、施工、运营等各个环节。由于广联达软件功能复杂、数据量大,对电脑的配置要求较高。本文将从多个方面详细阐述广联达软件的电脑配置推荐,以帮助读者选择适合的电脑配置处理器广联达软件在进行建筑设计、模拟等操作时,需要进行大量的数据计算和处理,因此对处理器的要求较高。推荐选择多核心、高主频的处理器,如英特尔i7系列或AMDRyzen系列。这些处理器具有较强的计算能力和多线程处理能力,能够更好地满足广联达软件的需求。内存内存是影响计算

如何在Zend框架中使用ACL(AccessControlList)进行权限控制导言:在一个Web应用程序中,权限控制是至关重要的一项功能。它可以确保用户只能访问其有权访问的页面和功能,并防止未经授权的访问。Zend框架提供了一种方便的方法来实现权限控制,即使用ACL(AccessControlList)组件。本文将介绍如何在Zend框架中使用ACL

求推荐1155针的cpu哪个最好当前性能最高的1155针CPU是IntelCorei7-3770K。它拥有4个核心和8个线程,基础频率为3.5GHz,并支持TurboBoost2.0技术,最高可达到3.9GHz。此外,它还搭载了8MB的三级缓存,是一款非常出色的处理器LGA1155针最强的CPUIntel酷睿i73770K。LGA1155接口为二三代酷睿处理器所使用的接口类型,性能最好的为Intel酷睿i73770K,这款处理器参数如下:1.适用类型:台式机;2.CPU系列:酷睿i7;3.CPU

我准备去西藏旅行背包去①背多少升的包合适把你认为最好的配置说下本人170体力不错第一次去徒步多就60升或以上的徒步少就60升以下的全程都坐车就不用背包,旅行箱更方便,真要随身带东西,弄个25~40升的就绰绰有馀西藏旅游必备用品:太阳镜、太阳帽、防晒霜、护肤霜、润唇膏、长袖上衣、毛衣;对于特殊旅游或去阿里、藏北、川藏线旅游,建议带:睡袋(防寒)、床单(防脏)、羽绒服、旅游鞋或登山鞋、拖鞋、牙刷、牙膏、毛巾、卷筒纸、纸内裤、消毒湿巾、手电筒、防水火柴、刀具、绳子。前运包能装电脑吗能装电脑,有些背包有

PHP实现框架:ZendFramework入门教程ZendFramework是PHP开发的一种开源网站框架,目前由ZendTechnologies维护,ZendFramework采用了MVC设计模式,提供了一系列可重用的代码库,服务于实现Web2.0应用程序和Web服务。ZendFramework深受PHP开发者的欢迎和推崇,拥有广泛


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 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
