📅  最后修改于: 2023-12-03 14:45:11.650000             🧑  作者: Mango
在 PHP 中,使用 header() 函数可以向客户端发送原始的 HTTP 报头。通常,在输出网页内容之前,先使用 header() 函数将一些特定的信息,如 Cookie 或重定向 URL 等,发送到客户端。
header(string $header, bool $replace = true, int $http_response_code = 0): void
header() 函数可以接受三个可选参数,它们的含义如下所示:
以下示例演示了如何使用 header() 函数设置重定向:
<?php
// 将页面重定向到指定网址
header("Location: https://www.example.com/");
?>
以下示例演示了如何使用 header() 函数设置 Cookie:
<?php
// 设置 Cookie
header("Set-Cookie: name=value; expires=Fri, 31 Dec 2021 23:59:59 GMT; path=/; secure");
?>
header() 函数是 PHP 中非常重要的一个函数,它可以实现多种功能,例如设置 HTTP 报头、重定向网页、设置 Cookie 等。掌握 header() 函数的使用方法是 PHP 程序员必须具备的技能之一。