gpt4 book ai didi

php get_headers() 函数 - 有没有办法告诉这个函数不遵循重定向?

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

php get_headers() 函数 - 有什么方法可以告诉这个函数不遵循重定向吗?

$headers = get_headers("http://example.com/test", 1);
var_dump($headers);

回复:

https://i.imgur.com/zjv2G8F.png

最佳答案

您需要将 max_redirects 上下文选项设置为 1 或仅禁用 follow_location:

$context = stream_context_create(
[
'http' => [
'follow_location' => 0,
],
]
);
$headers = get_headers("http://example.com/test", true, $context);
var_dump($headers);

Reference :

follow_location int

Follow Location header redirects. Set to 0 to disable.

Defaults to 1.

max_redirects int

The max number of redirects to follow. Value 1 or less means that no redirects are followed.

Defaults to 20.

关于php get_headers() 函数 - 有没有办法告诉这个函数不遵循重定向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68323607/

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