swoole里:
Swoole\Http\Response->header(string $key, string $value, bool $ucwords = true);
hyperf里面操作:
return $response->withHeader('Content-Type', 'text/html;charset=utf-8')->withHeader('Server', 'Hyperf')->withStatus(500)->withBody(new SwooleStream($data));
html:
< meta http-equiv="Content-Type" content="text/html; charset=utf-8">
php:
header("Content-Type: text/html;charset=utf-8");
参考: 111
222
1、状态码可以主动返回,想返回什么就什么。 且浏览器会根据的返回的码做判断如何处理。
比如:204就不显示任何内容。 500可以显示内容但调试器看是红色且不能使用F5刷新了
。