程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Zend的MVC機制使用分析(二)

Zend的MVC機制使用分析(二)

編輯:關於PHP編程

接著上面的一篇


把代碼貼上來
復制代碼 代碼如下:
$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();

上一篇把前兩句getInstance和startMvc兩個函數已經讀完了,下面是繼續分析後面的代碼

setRequest($request) 這裡是判斷request是否是繼承自Zend_Controller_Request_Abstract,如果是的話就把front的_request賦值為它。

這裡需要了解下什麼是Zend_Controller_Request_Abstract,它是所有request抽象出來的抽象類。Zend已經提供了兩個實現類,Zend_Controller_Request_Http和Zend_Controller_Request_Simple,一般我們搭建服務器都是http請求,所以你的項目如果需要重新繼承的話,一般都直接繼承Zend_Controller_Request_Http。

Zend_controller_Request_Http中我們經常會使用到的getQuery,getCookie,getRequestUri,getBasePath,getParams,getHeader等這些Http通常的選項都已經有了。

繼續講它的基類Zend_Controller_Request_Abstract,這個類的方法包含:

回到代碼
 

$front->setRequest(new Zend_Controller_Request_Http());這裡調用了Zend_Controller_Request_Http的構造函數,構造函數在第一次調用的時候是$this->setRequestUri();其中的setRequestUri很多都是直接使用$_SERVER這個php全局變量中的數據來獲取requestUri的。

setRequestUri可以學到的是在不同的服務器中如何獲取requestUri(特別是在IIS中的$SERVER中不同的變量組合有不同的含義),比如http://172.23.11.160/usvn/item/usvn_test 這個url,它的requestUri就是/usvn/item/usvn_test

 

$front->throwExceptions(true); 將內部的_throwExceptions標志位設置為true;

$front->setbaseUrl("/usvn")這個做了兩件事情,首先是設置front內部的_baseUrl屬性,其次調用Request的setBaseUrl,也是設置Zend_Controller_Request_Http的內部_baseUrl屬性。


$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);

下面這三行就直接說,實際上就是使用Zend的Router模塊使用配置文件,router使用setRouter放入front裡面。


最後一句


$front->dispatch();

這個函數也是最核心的一個函數。

這個函數首先注冊了一個插件Zend_Controller_Plugin_ErrorHandler,index為100,把插件的順序放在最後。

 

第二步存放了一個Helper,Zend_Controller_Action_Helper_ViewRenderer,index為-80

下面實例化了request,request是一個Zend_Controller_Request_Http類型。並將request的baseUrl設置為前面設置過的_baseUrl,就是"/usvn/item/usvn_test"

接著實例化了response,response是一個Zend_Controller_Response_Http();

下面使用plugins來對Request和Response進行設置,首先實際調用了Zend_Controller_Plugin_Broker的setRequest函數,這個函數循環遍歷broker管理的所有插件,調用插件的setRequest($request)函數(如果有的話)。

 

接下來初始化router,和設置router的參數。router已經在前面設置過了,就是Zend_Controller_Router_Rewrite類型

初始化分發器dispatcher,分發器我們是第一次看到,Zend_Controller_Dispatcher_Standard類。分發器以後再說。


下面的流程:

調用插件的routeStartup對request進行處理

調用router的route處理request

調用插件的routeShutdown對request進行處理

調用插件的dispatchLoopStartup對request進行處理

進入循環分發過程

調用插件的preDispatch對request進行處理

調用dispatcher的dispatch處理request和response

調用插件的postDispatch對request進行處理

跳出循環分發過程

調用插件的dispatchLoopShutdown對request進行處理

發送response

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved