gpt4 book ai didi

http - 为什么 "Connection"在 HTTP 响应 header 中拼写错误?

转载 作者:可可西里 更新时间:2023-11-01 16:31:00 24 4
gpt4 key购买 nike

我们正在运行以下 php 代码:

function downloadwebsite($url, $nobody=false) {

$ch = curl_init();

// FLAGS
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_NOBODY, $nobody);
curl_setopt($ch, CURLOPT_HEADER, $nobody);

$content = curl_exec($ch);
curl_close($ch);

return $content;
}


$website = downloadwebsite("www.imdb.com", true);
echo nl2br($website);

在响应中的一行,它说:“Cneonction:关闭”。为什么会写错?是故意的吗?

最佳答案

根据这个StackOverflow thread ,它是专门为负载均衡器完成的。看来,这样做是为了帮助保持事件状态。

关于http - 为什么 "Connection"在 HTTP 响应 header 中拼写错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9533413/

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