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,213
10년 전 조회 1,567
10년 전 조회 1,944
10년 전 조회 2,250
10년 전 조회 2,662
10년 전 조회 3,994
10년 전 조회 2,784
10년 전 조회 2,942
10년 전 조회 3,394
10년 전 조회 5,039
10년 전 조회 2,619
10년 전 조회 1,787
10년 전 조회 3,507
10년 전 조회 1,936
10년 전 조회 2,177
10년 전 조회 2,928
10년 전 조회 1,820
10년 전 조회 1,826
10년 전 조회 4,138
10년 전 조회 1,849
10년 전 조회 1,753
10년 전 조회 1,738
10년 전 조회 1,638
10년 전 조회 2,161
10년 전 조회 1,884
10년 전 조회 1,761
10년 전 조회 1,896
10년 전 조회 2,414
10년 전 조회 3,252
10년 전 조회 2,286
10년 전 조회 2,542
10년 전 조회 3,089
10년 전 조회 2,455
10년 전 조회 2,289
10년 전 조회 2,192
10년 전 조회 5,082
10년 전 조회 1,886
10년 전 조회 2,197
10년 전 조회 2,746
10년 전 조회 2,189
10년 전 조회 3,884
10년 전 조회 2,137
10년 전 조회 2,091
10년 전 조회 2,176
10년 전 조회 5,727
10년 전 조회 2,030
10년 전 조회 3,584
10년 전 조회 2,883
10년 전 조회 3,517
10년 전 조회 3,113
10년 전 조회 3,834
10년 전 조회 1,992
10년 전 조회 2,295
10년 전 조회 4,078
10년 전 조회 2,459
10년 전 조회 1,855
10년 전 조회 2,836
10년 전 조회 2,578
10년 전 조회 2,303
10년 전 조회 2,265
10년 전 조회 2,503
10년 전 조회 2,150
10년 전 조회 1,765
10년 전 조회 2,517
10년 전 조회 2,957
10년 전 조회 2,499
10년 전 조회 2,530
10년 전 조회 3,197
10년 전 조회 4,254
10년 전 조회 1,896
10년 전 조회 1,905
10년 전 조회 2,384
10년 전 조회 2,642
10년 전 조회 2,149
10년 전 조회 1,829
10년 전 조회 1,985
10년 전 조회 2,100
10년 전 조회 2,318
10년 전 조회 2,469
10년 전 조회 3,171
10년 전 조회 1,792
10년 전 조회 1,984
11년 전 조회 6,081
11년 전 조회 1,857
11년 전 조회 2,334
11년 전 조회 2,293
11년 전 조회 2,759
11년 전 조회 2,204
11년 전 조회 2,444
11년 전 조회 2,502
11년 전 조회 2,896
11년 전 조회 2,673
11년 전 조회 3,537
11년 전 조회 2,921
11년 전 조회 3,021
11년 전 조회 2,113
11년 전 조회 2,384
11년 전 조회 2,334
11년 전 조회 1,993
11년 전 조회 1,818