aweitian/framework

There is no license information available for the latest version (2.0.3) of this package.

Tian php framework v3,written for api

2.0.3 2019-08-26 07:18 UTC

This package is auto-updated.

Last update: 2024-04-26 17:16:10 UTC


README

php tests/web/public/index.php

## web request 生命周期
- request 被创建
- 路由被匹配
- 派遣器准备将request发送到前置middleware
- 通过前置middleware,初始化controller类
- 调用ACTION,生成response
- 派遣器准备将request发送到后置middleware,在后置middleware中next函数的返回值就是response
- 调用response->send将内容发送给用户