使用curl获取正确的标题

发布于 2024-10-31 05:36:26 字数 337 浏览 0 评论 0原文

目前我使用此代码来获取标题:

get_headers( $url, 1 ); 

想知道如何使用curl(更快);这是我的curl代码:

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_exec($curl);
$info= curl_getinfo($curl);
curl_close($curl);

但是我得到了“另一个”标头,我需要“Location”标头来查看bit.ly url或另一个重定向服务的去向。

提前致谢。

currently im using this code to get the headers:

get_headers( $url, 1 ); 

wondering how i can do with curl (more faster); this is my curl code:

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_exec($curl);
$info= curl_getinfo($curl);
curl_close($curl);

but i got "another" headers, i need the 'Location' header to see where go a bit.ly url or another redirect service.

Thanks in Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

假装爱人 2024-11-07 05:36:26

如果您想提取 Location 标头,请使用此正则表达式...

preg_match_all('/^Location: (?P<location>.*?)$/m', $headers, $matches);

var_dump($matches['location'][0]);

Ideone

如果您想阻止 cURL 跟随 Location 标头,请查看 查尔斯的回答

If you want to extract the Location header, use this regex...

preg_match_all('/^Location: (?P<location>.*?)$/m', $headers, $matches);

var_dump($matches['location'][0]);

Ideone.

If you want to stop cURL from following the Location header, check out Charles' answer.

过期以后 2024-11-07 05:36:26

您想要打开 CURLOPT_FOLLOWLOCATION 选项 设置为 true。

编辑:

哎呀,看起来您还需要 CURLOPT_RETURNTRANSFERcurl_exec 获取内容,并 CURLOPT_HEADER 以确保标头包含在其中。

You want to turn the CURLOPT_FOLLOWLOCATION option is set to true.

edit:

Whoops, looks like you also need CURLOPT_RETURNTRANSFER to get the content back from curl_exec and CURLOPT_HEADER to make sure headers are included in that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文