PHP:CURL 可以遵循元重定向吗
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,但您必须自己通过解析响应并查找类似以下内容来完成此操作:
服从
刷新请求是浏览器端的事情。使用 DOM 解析在 cURL 提供的响应中查找具有适当属性的
标记。
如果您可以保证响应是有效的 XML,您可以执行以下操作:
Yes, but you'll have to do it yourself by parsing the response and looking for things that look like:
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: