gpt4 book ai didi

PHP:CURL 能否遵循元重定向

转载 作者:可可西里 更新时间:2023-10-31 23:56:37 25 4
gpt4 key购买 nike

CURL 可以使用 CURLOPT_FOLLOWLOCATION 跟随 header 重定向,但是否可以跟随元刷新重定向?

谢谢

最佳答案

是的,但您必须自己解析响应并查找类似以下内容的内容:

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

服从<meta>刷新请求是浏览器端的事情。使用DOM解析寻找<meta>在 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

关于PHP:CURL 能否遵循元重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1820705/

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