PHP/Libcurl - 无法使用 ../.. 获取具有相对路径的图像
我有一个使用 libcurl 的 PHP 脚本,并且很难下载使用某些类型的相对路径的文件。
例如:
http://www.msn.com/../../i/09/4ebdf19a1ce03cce12e11926256422.gif
我正在使用以下curopts:
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
我错过了什么吗?
I have a PHP script that's using libcurl and is having a hard time downloading files that are using certain types of relative paths.
For example:
http://www.msn.com/../../i/09/4ebdf19a1ce03cce12e11926256422.gif
I'm using the following curlopts:
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这告诉 CURL 将 HTTP 标头包含在 curl_exec 返回的内容中。因此,.gif 数据前面会出现一堆 http“垃圾”,从而损坏它。
This tells CURL to include the HTTP headers in what curl_exec returns. So you'll have a bunch of http "garbage" in front of the .gif data, corrupting it.