thinkphp 设置标头
时间: 2023-09-19 07:11:10 浏览: 89
在 ThinkPHP 中设置标头可以使用 Response 类的 header 方法,示例代码如下:
```php
use think\Response;
// 设置 Content-Type 为 application/json
$response = new Response();
$response->header('Content-Type', 'application/json');
```
你也可以在控制器中使用 `$this->response` 对象进行设置,示例代码如下:
```php
// 设置 Content-Type 为 application/json
return $this->response->header('Content-Type', 'application/json');
```
阅读全文