在PHP中,header() 函数用于发送 HTTP 头信息
▥php
𝄐 0
php header函数,php header 跳转,php header函数跳转,php header session 丢失,php header authorization,php header函数ob start
在PHP中,header() 函数用于发送 HTTP 头信息。它通常用于在脚本执行前发送 HTTP 头部,以便控制页面重定向、设置 cookie、指定内容类型等。
以下是一些 header() 函数的使用示例:
1. 重定向到另一个页面:
php
header("Location: http://www.example.com");
exit;
2. 设置内容类型为 JSON:
php
header("Content-Type: application/json");
3. 设置 cookie:
php
header("Set-Cookie: name=value; expires=Mon, 1 Jan 2023 00:00:00 GMT; path=/");
4. 禁用缓存:
php
header("Cache-Control: no-cache, no-store, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
需要注意的是,调用 header() 函数之前不能有任何输出,包括空格、换行符等非 PHP 代码。
希望以上解释对你有帮助!
在PHP中,header() 函数用于发送 HTTP 头信息。它通常用于在脚本执行前发送 HTTP 头部,以便控制页面重定向、设置 cookie、指定内容类型等。
以下是一些 header() 函数的使用示例:
1. 重定向到另一个页面:
php
header("Location: http://www.example.com");
exit;
2. 设置内容类型为 JSON:
php
header("Content-Type: application/json");
3. 设置 cookie:
php
header("Set-Cookie: name=value; expires=Mon, 1 Jan 2023 00:00:00 GMT; path=/");
4. 禁用缓存:
php
header("Cache-Control: no-cache, no-store, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
需要注意的是,调用 header() 函数之前不能有任何输出,包括空格、换行符等非 PHP 代码。
希望以上解释对你有帮助!
本文地址:
/show-280199.html
版权声明:除非特别标注原创,其它均来自互联网,转载时请以链接形式注明文章出处。