Merge branch 'master' of https://github.com/dickens7/hyperf into pr/455

This commit is contained in:
huangzhhui 2019-08-29 18:45:45 +08:00
commit 5c882c76e7

View File

@ -78,11 +78,11 @@ class IndexController
`redirect` 方法:
| 参数 | 类型 | 默认值 | 备注 |
|:-------------------:|:------:|:---------------:|:------------------:|
| toUrl | string | | 如果参数不存在 `http://``https://` 则根据当前服务的 Host 自动拼接对应的 URL且根据 `$schema` 参数拼接协议 |
| status | int | 302 | 响应状态码 |
| schema | string | http |`$toUrl` 不存在 `http://``https://` 时生效,仅可传递 `http``https` |
| 参数 | 类型 | 默认值 | 备注 |
|:------:|:------:|:------:|:--------------------------------------------------------------------------------------------------------------:|
| toUrl | string | 无 | 如果参数不存在 `http://``https://` 则根据当前服务的 Host 自动拼接对应的 URL且根据 `$schema` 参数拼接协议 |
| status | int | 302 | 响应状态码 |
| schema | string | http | `$toUrl` 不存在 `http://``https://` 时生效,仅可传递 `http``https` |
```php
<?php
@ -132,10 +132,10 @@ class IndexController
`download` 方法:
| 参数 | 类型 | 默认值 | 备注 |
|:-------------------:|:------:|:---------------:|:------------------:|
| file | string | | 要返回下载文件的绝对路径,同通过 BASE_PATH 常量来定位到项目的根目录 |
| name | string | | 客户端下载文件的文件名,为空则会使用下载文件的原名 |
| 参数 | 类型 | 默认值 | 备注 |
|:----:|:------:|:------:|:-------------------------------------------------------------------:|
| file | string | 无 | 要返回下载文件的绝对路径,同通过 BASE_PATH 常量来定位到项目的根目录 |
| name | string | 无 | 客户端下载文件的文件名,为空则会使用下载文件的原名 |
```php