1

我需要从远程站点保存图像。我的主机不允许 file_get_contents,所以我正在尝试使用 curl。我正在使用代码获取损坏的图像。请帮忙!

   $destination = realpath("../../app/webroot/img/uploads") . "/" . $facebook_id . "." . "gif";

    // Delete previous pic
    if (file_exists($destination)) {
        unlink($destination);
    }

    // Save new pic
    $remoteUrl = "https://graph.facebook.com/" . $facebook_id . "/picture";

    $ch = curl_init($remoteUrl);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
    $rawdata = curl_exec($ch);
    curl_close($ch);
    $fp = fopen($destination, 'w');
    fwrite($fp, $rawdata);
    fclose($fp);
4

2 回答 2

1

您的服务器似乎正在将 graph.facebook.com 解析为由于某种原因未连接的 IPv6 地址。如果您使用的是 php5.3+,您可以尝试强制 curl 使用 IPv4:

curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);

于 2013-03-14T00:02:31.320 回答
1

$fp = fopen($destination, 'wb');

相反,将它们作为二进制文件打开!:)

于 2013-03-13T21:44:49.810 回答