作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
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/
我是一名优秀的程序员,十分优秀!