markdown Zend Framework 3:概述

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Zend Framework 3:概述相关的知识,希望对你有一定的参考价值。

## A Zend Framework 3 application relies on following 6 components:
- Configuration array.
- ServiceManager instance.
- EventManager instance.
- ModuleManager instance.
- Request object.
- Response object.

## There are 2 types of Route Stack:
- SimpleRouteStack: LIFO order.
- TreeRouteStack: B-tree algorithm.

## There are 2 types of Controller:
- `Zend\Mvc\Controller\AbstractActionController`
- `Zend\Mvc\Controller\RestfulController`
## There are 6 types of Service Manager config:
- abstract_factories
- factories
- invokables
- aliases
- services
- shared (default all services are shared)
## There are 2 type of Data Access Layer:
- `Zend\Db\TableGateway`
- `Zend\Db\RowGateway`

以上是关于markdown Zend Framework 3:概述的主要内容,如果未能解决你的问题,请参考以下文章

markdown Zend Framework 3:授权和RBAC

markdown Zend Framework 3:Controller插件管理器

markdown Zend Framework 3:RBAC的访问过滤器和访问视图助手

markdown Zend Framework 3:用于身份验证服务的CurrentUser Filter和CurrentUser View Helper

如何模拟 Zend\Form 提交而不在 Zend Framework 2/3 中显示表单?

如何模拟Zend Form提交而不在Zend Framework 2/3中显示表单?