[php] PHP URL에서 이미지 저장

PHP URL에서 PC로 이미지를 저장해야합니다. http://example.com/image.php단일 “꽃”이미지 가있는 페이지가 있다고 가정 해 보겠습니다 . 새로운 이름으로 PHP에서이 이미지를 어떻게 저장합니까?



답변

다음으로 allow_url_fopen설정 한 경우 true:

$url = 'http://example.com/image.php';
$img = '/my/folder/flower.gif';
file_put_contents($img, file_get_contents($url));

다른 cURL 사용 :

$ch = curl_init('http://example.com/image.php');
$fp = fopen('/my/folder/flower.gif', 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);


답변

copy('http://example.com/image.php', 'local/folder/flower.jpg');


답변

$content = file_get_contents('http://example.com/image.php');
file_put_contents('/my/folder/flower.jpg', $content);


답변

여기에서는 원격 이미지를 image.jpg에 저장합니다.

function save_image($inPath,$outPath)
{ //Download images from remote server
    $in=    fopen($inPath, "rb");
    $out=   fopen($outPath, "wb");
    while ($chunk = fread($in,8192))
    {
        fwrite($out, $chunk, 8192);
    }
    fclose($in);
    fclose($out);
}

save_image('http://www.someimagesite.com/img.jpg','image.jpg');


답변

cURL에 대한 Vartec의 답변 이 효과 가 없었습니다. 내 특정 문제로 인해 약간 개선되었습니다.

예를 들어

서버에 리디렉션이있는 경우 (예 : 페이스 북 프로필 이미지를 저장하려는 경우) 다음 옵션 세트가 필요합니다.

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

전체 솔루션은 다음과 같습니다.

$ch = curl_init('http://example.com/image.php');
$fp = fopen('/my/folder/flower.gif', 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_exec($ch);
curl_close($ch);
fclose($fp);


답변

다른 솔루션을 사용할 수 없었지만 wget을 사용할 수있었습니다.

$tempDir = '/download/file/here';
$finalDir = '/keep/file/here';
$imageUrl = 'http://www.example.com/image.jpg';

exec("cd $tempDir && wget --quiet $imageUrl");

if (!file_exists("$tempDir/image.jpg")) {
    throw new Exception('Failed while trying to download image');
}

if (rename("$tempDir/image.jpg", "$finalDir/new-image-name.jpg") === false) {
    throw new Exception('Failed while trying to move image file from temp dir to final dir');
}


답변

file()PHP 매뉴얼을 참조하십시오 :

$url    = 'http://mixednews.ru/wp-content/uploads/2011/10/0ed9320413f3ba172471860e77b15587.jpg';
$img    = 'miki.png';
$file   = file($url);
$result = file_put_contents($img, $file)