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,218
10년 전 조회 1,574
10년 전 조회 1,952
10년 전 조회 2,255
10년 전 조회 2,668
10년 전 조회 3,996
10년 전 조회 2,790
10년 전 조회 2,950
10년 전 조회 3,401
10년 전 조회 5,041
10년 전 조회 2,621
10년 전 조회 1,789
10년 전 조회 3,511
10년 전 조회 1,943
10년 전 조회 2,181
10년 전 조회 2,932
10년 전 조회 1,826
10년 전 조회 1,831
10년 전 조회 4,140
10년 전 조회 1,855
10년 전 조회 1,756
10년 전 조회 1,742
10년 전 조회 1,639
10년 전 조회 2,162
10년 전 조회 1,892
10년 전 조회 1,766
10년 전 조회 1,901
10년 전 조회 2,420
10년 전 조회 3,254
10년 전 조회 2,291
10년 전 조회 2,547
10년 전 조회 3,091
10년 전 조회 2,459
10년 전 조회 2,295
10년 전 조회 2,197
10년 전 조회 5,086
10년 전 조회 1,887
10년 전 조회 2,200
10년 전 조회 2,750
10년 전 조회 2,194
10년 전 조회 3,888
10년 전 조회 2,141
10년 전 조회 2,093
10년 전 조회 2,181
10년 전 조회 5,730
10년 전 조회 2,032
10년 전 조회 3,591
10년 전 조회 2,890
10년 전 조회 3,522
10년 전 조회 3,120
10년 전 조회 3,837
10년 전 조회 1,994
10년 전 조회 2,299
10년 전 조회 4,082
10년 전 조회 2,461
10년 전 조회 1,858
10년 전 조회 2,840
10년 전 조회 2,585
10년 전 조회 2,311
10년 전 조회 2,273
10년 전 조회 2,504
10년 전 조회 2,152
10년 전 조회 1,768
10년 전 조회 2,519
10년 전 조회 2,957
10년 전 조회 2,501
10년 전 조회 2,532
10년 전 조회 3,200
10년 전 조회 4,258
10년 전 조회 1,900
10년 전 조회 1,910
10년 전 조회 2,395
10년 전 조회 2,647
10년 전 조회 2,150
10년 전 조회 1,833
10년 전 조회 1,987
10년 전 조회 2,106
10년 전 조회 2,325
10년 전 조회 2,473
10년 전 조회 3,174
10년 전 조회 1,794
10년 전 조회 1,986
11년 전 조회 6,084
11년 전 조회 1,868
11년 전 조회 2,336
11년 전 조회 2,298
11년 전 조회 2,759
11년 전 조회 2,209
11년 전 조회 2,447
11년 전 조회 2,506
11년 전 조회 2,896
11년 전 조회 2,677
11년 전 조회 3,542
11년 전 조회 2,923
11년 전 조회 3,025
11년 전 조회 2,118
11년 전 조회 2,392
11년 전 조회 2,342
11년 전 조회 1,995
11년 전 조회 1,820