COMING SOON 🚀

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,176
10년 전 조회 1,536
10년 전 조회 1,910
10년 전 조회 2,206
10년 전 조회 2,632
10년 전 조회 3,958
10년 전 조회 2,759
10년 전 조회 2,902
10년 전 조회 3,355
10년 전 조회 4,992
10년 전 조회 2,597
10년 전 조회 1,758
10년 전 조회 3,463
10년 전 조회 1,878
10년 전 조회 2,128
10년 전 조회 2,892
10년 전 조회 1,789
10년 전 조회 1,800
10년 전 조회 4,109
10년 전 조회 1,817
10년 전 조회 1,712
10년 전 조회 1,696
10년 전 조회 1,596
10년 전 조회 2,137
10년 전 조회 1,848
10년 전 조회 1,737
10년 전 조회 1,865
10년 전 조회 2,382
10년 전 조회 3,229
10년 전 조회 2,254
10년 전 조회 2,506
10년 전 조회 3,055
10년 전 조회 2,423
10년 전 조회 2,252
10년 전 조회 2,150
10년 전 조회 5,050
10년 전 조회 1,854
10년 전 조회 2,164
10년 전 조회 2,718
10년 전 조회 2,164
10년 전 조회 3,861
10년 전 조회 2,111
10년 전 조회 2,066
10년 전 조회 2,142
10년 전 조회 5,696
10년 전 조회 2,007
10년 전 조회 3,561
10년 전 조회 2,850
10년 전 조회 3,488
10년 전 조회 3,084
10년 전 조회 3,809
10년 전 조회 1,956
10년 전 조회 2,252
10년 전 조회 4,051
10년 전 조회 2,434
10년 전 조회 1,820
10년 전 조회 2,807
10년 전 조회 2,551
10년 전 조회 2,271
10년 전 조회 2,232
10년 전 조회 2,467
10년 전 조회 2,124
10년 전 조회 1,728
10년 전 조회 2,478
10년 전 조회 2,930
10년 전 조회 2,467
10년 전 조회 2,500
10년 전 조회 3,161
10년 전 조회 4,221
10년 전 조회 1,859
10년 전 조회 1,878
10년 전 조회 2,349
10년 전 조회 2,606
10년 전 조회 2,112
10년 전 조회 1,798
10년 전 조회 1,952
10년 전 조회 2,072
10년 전 조회 2,288
10년 전 조회 2,433
10년 전 조회 3,141
10년 전 조회 1,751
10년 전 조회 1,947
11년 전 조회 6,051
11년 전 조회 1,823
11년 전 조회 2,306
11년 전 조회 2,263
11년 전 조회 2,722
11년 전 조회 2,171
11년 전 조회 2,407
11년 전 조회 2,477
11년 전 조회 2,871
11년 전 조회 2,637
11년 전 조회 3,493
11년 전 조회 2,899
11년 전 조회 2,993
11년 전 조회 2,085
11년 전 조회 2,349
11년 전 조회 2,306
11년 전 조회 1,953
11년 전 조회 1,778