在 PHP 中,您可以使用 header()
函数来设置 HTTP 响应头。这个函数允许您向客户端发送原始的 HTTP 响应头。以下是一些示例:
header('Content-Type: text/html; charset=utf-8');
header('X-Custom-Header: value');
header('Location: http://www.example.com/');
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // 过去的时间
请注意,header()
函数必须在发送任何输出之前调用,因为它需要将响应头发送给客户端。否则,您将收到一个错误消息,提示 “headers already sent”。
在设置响应头时,确保您了解 HTTP 协议和相关的响应头标准。不正确地设置响应头可能会导致客户端无法正确处理您的应用程序的响应。