u

외부이미지 서버에 저장하기

스크린샷 2015-05-06 오후 11.22.51.png

데모 

 

<?php

//ver1.0 150409 @_untitle_d

 

function save_remote_image($url, $save_path)

{

    $ch = curl_init ($url);

    curl_setopt($ch, CURLOPT_HEADER, 0); // required

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1); // required for images

    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // maybe redirect on other side?

    curl_setopt($ch, CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3'); // or user agent checks?

    $data=curl_exec($ch);

    curl_close ($ch);

$chars_array = array_merge(range(0,9), range('a','z'), range('A','Z'));

//아래의 문자열이 들어간 파일은 -x 를 붙여서 웹경로를 알더라도 실행을 하지 못하도록 함

$filename = preg_replace("/\.(php|phtm|htm|cgi|pl|exe|jsp|asp|inc)/i", "$0-x", basename($url));

shuffle($chars_array);

$shuffle = implode("", $chars_array);

//첨부파일 첨부시 첨부파일명에 공백이 포함되어 있으면 일부 PC에서 보이지 않거나 다운로드 되지 않는 현상이 있습니다. (길상여의 님 090925)

$change_filename = abs(ip2long($_SERVER[REMOTE_ADDR])).'_'.substr($shuffle,0,8).'_'.str_replace('%', '', urlencode(str_replace(' ', '_', $filename)));

$out_path = $save_path.$change_filename;

    if(file_exists($out_path)) @unlink($out_path);

    $fp = fopen($out_path,'x');

    fwrite($fp, $data);

    fclose($fp);

return $change_filename;

}

 

$url = 'http://i.imgur.com/OJws8NX.png'; //외부이미지

$save_path = $_SERVER[DOCUMENT_ROOT].'/data/remote/'; 타겟폴더

$remote_image = 'http://'.$_SERVER[SERVER_NAME].'/data/remote/'.save_remote_image($url, $save_path);

?>

 

<img src="<?=$remote_image?>"><br>

<?=$remote_image?>

 

 

 

 

 

관련링크

http://untitled.untitle311apyxry1w48.com/pjtecuh

 

 

 

참고

http://sir.co.kr/

http://stackoverflow.com/questions/7375021/php-retrieve-and-save-remote-image

http://phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_function&wr_id=292925 

|

댓글 1개

좋은정보 감사합니다. ^^
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
10년 전 조회 2,229
10년 전 조회 1,588
10년 전 조회 1,964
10년 전 조회 2,262
10년 전 조회 2,677
10년 전 조회 4,007
10년 전 조회 2,797
10년 전 조회 2,960
10년 전 조회 3,408
10년 전 조회 5,049
10년 전 조회 2,626
10년 전 조회 1,798
10년 전 조회 3,517
10년 전 조회 1,949
10년 전 조회 2,190
10년 전 조회 2,939
10년 전 조회 1,838
10년 전 조회 1,836
10년 전 조회 4,147
10년 전 조회 1,869
10년 전 조회 1,765
10년 전 조회 1,750
10년 전 조회 1,649
10년 전 조회 2,172
10년 전 조회 1,899
10년 전 조회 1,774
10년 전 조회 1,911
10년 전 조회 2,426
10년 전 조회 3,263
10년 전 조회 2,300
10년 전 조회 2,555
10년 전 조회 3,101
10년 전 조회 2,469
10년 전 조회 2,304
10년 전 조회 2,205
10년 전 조회 5,098
10년 전 조회 1,892
10년 전 조회 2,213
10년 전 조회 2,758
10년 전 조회 2,202
10년 전 조회 3,894
10년 전 조회 2,149
10년 전 조회 2,101
10년 전 조회 2,183
10년 전 조회 5,735
10년 전 조회 2,042
10년 전 조회 3,594
10년 전 조회 2,894
10년 전 조회 3,526
10년 전 조회 3,126
10년 전 조회 3,844
10년 전 조회 2,007
10년 전 조회 2,306
10년 전 조회 4,091
10년 전 조회 2,471
10년 전 조회 1,864
10년 전 조회 2,851
10년 전 조회 2,592
10년 전 조회 2,321
10년 전 조회 2,282
10년 전 조회 2,512
10년 전 조회 2,159
10년 전 조회 1,772
10년 전 조회 2,524
10년 전 조회 2,959
10년 전 조회 2,508
10년 전 조회 2,544
10년 전 조회 3,208
10년 전 조회 4,263
10년 전 조회 1,912
10년 전 조회 1,920
10년 전 조회 2,402
10년 전 조회 2,652
10년 전 조회 2,156
10년 전 조회 1,844
10년 전 조회 1,997
10년 전 조회 2,116
10년 전 조회 2,333
10년 전 조회 2,479
10년 전 조회 3,182
10년 전 조회 1,797
10년 전 조회 1,993
11년 전 조회 6,089
11년 전 조회 1,875
11년 전 조회 2,347
11년 전 조회 2,310
11년 전 조회 2,766
11년 전 조회 2,218
11년 전 조회 2,458
11년 전 조회 2,515
11년 전 조회 2,910
11년 전 조회 2,688
11년 전 조회 3,558
11년 전 조회 2,927
11년 전 조회 3,033
11년 전 조회 2,125
11년 전 조회 2,404
11년 전 조회 2,353
11년 전 조회 2,006
11년 전 조회 1,827