gpt4 book ai didi

PHP header() 函数

转载 作者:行者123 更新时间:2023-12-02 04:57:12 24 4
gpt4 key购买 nike

我正在尝试整合我公司合作伙伴的网站,我在这里遇到了这一行:

header("Location: field/index.php", overwrite); 

我浏览了 header() 函数的 PHP 手册,但找不到名为 overwrite 的参数。有人可以给我任何线索吗?

最佳答案

第二个参数(replace)的意思和overwrite是一样的。如果您看到以下行:

header("Location: field/index.php", overwrite);

这很可能是无效的(如果 overwrite 是常量,它在技术上是有效的)。应该是:

header("Location: field/index.php", true);

关于PHP header() 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17798752/

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