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,211
10년 전 조회 1,566
10년 전 조회 1,942
10년 전 조회 2,248
10년 전 조회 2,661
10년 전 조회 3,991
10년 전 조회 2,782
10년 전 조회 2,940
10년 전 조회 3,393
10년 전 조회 5,038
10년 전 조회 2,618
10년 전 조회 1,786
10년 전 조회 3,503
10년 전 조회 1,932
10년 전 조회 2,174
10년 전 조회 2,926
10년 전 조회 1,816
10년 전 조회 1,824
10년 전 조회 4,137
10년 전 조회 1,848
10년 전 조회 1,749
10년 전 조회 1,738
10년 전 조회 1,631
10년 전 조회 2,156
10년 전 조회 1,879
10년 전 조회 1,760
10년 전 조회 1,894
10년 전 조회 2,413
10년 전 조회 3,251
10년 전 조회 2,284
10년 전 조회 2,540
10년 전 조회 3,088
10년 전 조회 2,452
10년 전 조회 2,286
10년 전 조회 2,191
10년 전 조회 5,081
10년 전 조회 1,885
10년 전 조회 2,196
10년 전 조회 2,745
10년 전 조회 2,187
10년 전 조회 3,882
10년 전 조회 2,136
10년 전 조회 2,089
10년 전 조회 2,171
10년 전 조회 5,725
10년 전 조회 2,029
10년 전 조회 3,583
10년 전 조회 2,880
10년 전 조회 3,513
10년 전 조회 3,112
10년 전 조회 3,834
10년 전 조회 1,989
10년 전 조회 2,292
10년 전 조회 4,074
10년 전 조회 2,457
10년 전 조회 1,850
10년 전 조회 2,835
10년 전 조회 2,575
10년 전 조회 2,302
10년 전 조회 2,264
10년 전 조회 2,500
10년 전 조회 2,150
10년 전 조회 1,762
10년 전 조회 2,514
10년 전 조회 2,956
10년 전 조회 2,496
10년 전 조회 2,529
10년 전 조회 3,194
10년 전 조회 4,254
10년 전 조회 1,893
10년 전 조회 1,902
10년 전 조회 2,383
10년 전 조회 2,640
10년 전 조회 2,148
10년 전 조회 1,828
10년 전 조회 1,985
10년 전 조회 2,099
10년 전 조회 2,316
10년 전 조회 2,467
10년 전 조회 3,167
10년 전 조회 1,790
10년 전 조회 1,979
11년 전 조회 6,079
11년 전 조회 1,854
11년 전 조회 2,332
11년 전 조회 2,292
11년 전 조회 2,758
11년 전 조회 2,201
11년 전 조회 2,443
11년 전 조회 2,502
11년 전 조회 2,895
11년 전 조회 2,672
11년 전 조회 3,535
11년 전 조회 2,921
11년 전 조회 3,020
11년 전 조회 2,111
11년 전 조회 2,382
11년 전 조회 2,333
11년 전 조회 1,990
11년 전 조회 1,818