php get_headers位置

时间:2011-10-29 07:54:39

标签: php get-headers

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

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"];

错误:Parse error: syntax error, unexpected '['行中的echo

1 个答案:

答案 0 :(得分:10)

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