PHP/Libcurl - 无法使用 ../.. 获取具有相对路径的图像

发布于 2024-11-27 00:12:38 字数 392 浏览 0 评论 0原文

我有一个使用 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 技术交流群。

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

发布评论

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

评论(1

莳間冲淡了誓言ζ 2024-12-04 00:12:38
curl_setopt($ch, CURLOPT_HEADER, 1);

这告诉 CURL 将 HTTP 标头包含在 curl_exec 返回的内容中。因此,.gif 数据前面会出现一堆 http“垃圾”,从而损坏它。

curl_setopt($ch, CURLOPT_HEADER, 1);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文