在PHP中,可以使用header()
函数来设置响应头。
语法如下:
header(string $header, bool $replace = true, int $http_response_code = 0): void
其中,$header
参数是要设置的响应头的字符串,格式为“HeaderName: HeaderValue”,例如:Content-Type: text/html
。
$replace
参数可选,默认为true
,表示替换之前设置的相同响应头。如果设置为false
,则会追加相同的响应头。
$http_response_code
参数可选,用于设置响应状态码。
示例:
header('Content-Type: text/html');
header('Location: http://example.com');
header('HTTP/1.1 404 Not Found');
注意:header()
函数必须在任何实际的输出之前调用,否则会报错。