gpt4 book ai didi

php get_headers 位置

转载 作者:可可西里 更新时间:2023-11-01 00:06:40 27 4
gpt4 key购买 nike

如何使用php get_headers只获取location部分?

var_dump(get_headers('http://www.google.com',1));

这个返回:

array(12) { [0]=> string(18) "HTTP/1.0 302 Found" ["Location"]=> string(21) "http://www.google.it/" ... }

然后我用

echo (get_headers('http://www.google.com',1)["Location"];

error: Parse error: syntax error, unexpected '[' in this echo

最佳答案

$headers = get_headers('http://www.google.com',1);
echo $headers["Location"];

关于php get_headers 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7937673/

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