gpt4 book ai didi

php - 在 PHP 中使用单个 header() 调用发送多个 HTTP header

转载 作者:可可西里 更新时间:2023-11-01 17:35:46 25 4
gpt4 key购买 nike

我发送不同语言的缓存和内容类型的 header 以显示正确的字符,但它不起作用。

header('Cache-control: private; Content-Type:text/html; charset=UTF-8');

我做错了什么?

最佳答案

您不能在一次 header() 调用中发送多个 header 。像这样拆分它:

header('Cache-control: private;');
header('Content-Type:text/html; charset=UTF-8');

通常,当您发送 header 时,您会用新行将它们分隔开,但是如果您尝试使用 PHP 的 header() 函数来执行此操作,则会收到警告:

Header may not contain more than a single header, new line detected

关于php - 在 PHP 中使用单个 header() 调用发送多个 HTTP header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32028837/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com