PHP:CURL 可以遵循元重定向吗

发布于 2024-08-13 04:02:20 字数 73 浏览 2 评论 0原文

CURL 可以使用 CURLOPT_FOLLOWLOCATION 遵循标头重定向,但是否可以遵循元刷新重定向?

谢谢

CURL can follow header redirects with the use of CURLOPT_FOLLOWLOCATION but is it possible to follow meta refresh redirects?

Thanks

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

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

发布评论

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

评论(1

白馒头 2024-08-20 04:02:20

是的,但您必须自己通过解析响应并查找类似以下内容来完成此操作:

<meta http-equiv="refresh" content="5;url=http://example.com/" />

服从 刷新请求是浏览器端的事情。使用 DOM 解析在 cURL 提供的响应中查找具有适当属性的 标记。

如果您可以保证响应是有效的 XML,您可以执行以下操作:

$xml = simplexml_load_file($cURLResponse);
$result = $xml->xpath("//meta[@http-equiv='refresh']");
// Process the $result element to get the relevant bit out of the content attribute

Yes, but you'll have to do it yourself by parsing the response and looking for things that look like:

<meta http-equiv="refresh" content="5;url=http://example.com/" />

Obeying <meta> refresh requests is a browser-side thing. Use DOM parsing to look for <meta> tags with the appropriate attributes in the response cURL gives you.

If you can guarantee that the response is valid XML, you could do something like this:

$xml = simplexml_load_file($cURLResponse);
$result = $xml->xpath("//meta[@http-equiv='refresh']");
// Process the $result element to get the relevant bit out of the content attribute
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文