PHP header()的用法有哪些

60次阅读
没有评论

共计 556 个字符,预计需要花费 2 分钟才能阅读完成。

PHP 中的 header() 函数用于发送 HTTP 标头。
以下是 header() 函数的一些常见用法:

  1. 设置页面重定向:
header("Location: http://www.example.com");
exit;
  1. 设置页面字符编码:
header("Content-Type: text/html; charset=UTF-8");
  1. 设置缓存控制:
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
  1. 设置文件下载:
header("Content-Disposition: attachment; filename=\"example.txt\"");
header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: binary");
  1. 设置页面刷新:
header("Refresh: 5; url=http://www.example.com");

这些只是 header() 函数的一些常见用法,实际上还有许多其他用法。根据具体需求,你可以使用不同的 HTTP 标头来控制页面的行为。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-13发表,共计556字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)