Zend Framework的Zend_Controller实现主要涉及到的文件如下:
root@coder-671T-M:/ZendFramework-1.11.11/library/Zend/Controller# tree.├── Action│ ├── Exception.php│ ├── Helper│ │ ├── Abstract.php│ │ ├── ActionStack.php│ │ ├── AjaxContext.php│ │ ├── AutoComplete│ │ │ └── Abstract.php│ │ ├── AutoCompleteDojo.php│ │ ├── AutoCompleteScriptaculous.php│ │ ├── Cache.php│ │ ├── ContextSwitch.php│ │ ├── FlashMessenger.php│ │ ├── Json.php│ │ ├── Redirector.php│ │ ├── Url.php│ │ └── ViewRenderer.php│ ├── HelperBroker│ │ └── PriorityStack.php│ ├── HelperBroker.php│ └── Interface.php├── Action.php├── Dispatcher│ ├── Abstract.php│ ├── Exception.php│ ├── Interface.php│ └── Standard.php├── Exception.php├── Front.php├── Plugin│ ├── Abstract.php│ ├── ActionStack.php│ ├── Broker.php│ ├── ErrorHandler.php│ └── PutHandler.php├── Request│ ├── Abstract.php│ ├── Apache404.php│ ├── Exception.php│ ├── Http.php│ ├── HttpTestCase.php│ └── Simple.php├── Response│ ├── Abstract.php│ ├── Cli.php│ ├── Exception.php│ ├── Http.php│ └── HttpTestCase.php└── Router ├── Abstract.php ├── Exception.php ├── Interface.php ├── Rewrite.php ├── Route │ ├── Abstract.php │ ├── Chain.php │ ├── Hostname.php │ ├── Interface.php │ ├── Module.php │ ├── Regex.php │ └── Static.php └── Route.php10 directories, 52 files
Zend_Controller提供的具体功能如下: