1

我有一个来自 facebook 的图片网址:

https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-prn1/s720x720/156510_443901075651849_1975839315_n.jpg

我需要将其保存在本地。当我使用file_get_contents它时,它给出了错误failed to open stream。当我在浏览器中打开图像时,它显示正常。我只是明白该怎么做。

事实上,我以下列方式使用 curl 并没有得到任何回应

$url = https://fbcdn-sphotos-ea.akamaihd.net/hphotos-ak-prn1/s720x720/156510_443901085651849_1975839315_n.jpg

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 0);
$response = curl_exec($ch);
curl_close($ch);
$filename = 'ex'.$src['photo_id'].'.jpg';
$imgRes = imagecreatefromstring($response);
imagejpeg($imgRes, $filename, 70);

header("Content-Type: image/jpg");
imagejpeg($imgRes, NULL, 70);
4

3 回答 3

3

这是因为您正在请求一个安全的 URL,而您的服务器可能在没有配置的情况下不支持它。您可以使用 CURL 来请求带有有效证书的 URL,也可以尝试在没有 SSL 的情况下请求它:

<?php

$file = 'http://url/to_image.jpg';
$data = file_get_contents($file);

header('Content-type: image/jpg');
echo $data;
于 2012-10-16T14:02:35.100 回答
1

您需要告诉 cURL 您不想验证 SSL 连接。

以下是经过测试和工作的。

$url = "https://******";


$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // ignore SSL verifying
curl_setopt($ch, CURLOPT_HEADER, 0);
$response = curl_exec($ch);
curl_close($ch);

header("Content-Type: image/jpg");
echo $response;
于 2012-10-16T14:06:08.407 回答
0

Facebook 很可能需要一个有效的 User-Agent 字符串并拒绝您的请求,因为file_get_contents在访问远程文件时不发送。

你可以使用这个:

if( $f = fsockopen($host="fbcdn-sphotos-e-a-.akamaihd.net",80)) {
    fputs($f,"GET /hphotos-ak-prn1/........ HTTP/1.0\r\n"
            ."Host: ".$host."\r\n"
            ."User-Agent: My Image Downloader\r\n\r\n");
    $ret = "";
    $headers = true;
    while(!feof($f)) {
        $line = fgets($f);
        if( $headers) {
            if( trim($line) == "") $headers = false;
        }
        else $ret .= $line;
    }
    fclose($f);
    file_put_contents("mylocalfile.png",$ret);
}
于 2012-10-16T13:39:40.750 回答