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,154
10년 전 조회 1,520
10년 전 조회 1,888
10년 전 조회 2,193
10년 전 조회 2,622
10년 전 조회 3,947
10년 전 조회 2,746
10년 전 조회 2,890
10년 전 조회 3,343
10년 전 조회 4,977
10년 전 조회 2,589
10년 전 조회 1,745
10년 전 조회 3,446
10년 전 조회 1,865
10년 전 조회 2,110
10년 전 조회 2,884
10년 전 조회 1,771
10년 전 조회 1,786
10년 전 조회 4,098
10년 전 조회 1,804
10년 전 조회 1,694
10년 전 조회 1,682
10년 전 조회 1,577
10년 전 조회 2,113
10년 전 조회 1,837
10년 전 조회 1,721
10년 전 조회 1,854
10년 전 조회 2,364
10년 전 조회 3,217
10년 전 조회 2,236
10년 전 조회 2,493
10년 전 조회 3,045
10년 전 조회 2,412
10년 전 조회 2,240
10년 전 조회 2,140
10년 전 조회 5,040
10년 전 조회 1,836
10년 전 조회 2,150
10년 전 조회 2,706
10년 전 조회 2,154
10년 전 조회 3,848
10년 전 조회 2,098
10년 전 조회 2,051
10년 전 조회 2,128
10년 전 조회 5,681
10년 전 조회 1,994
10년 전 조회 3,556
10년 전 조회 2,838
10년 전 조회 3,483
10년 전 조회 3,073
10년 전 조회 3,797
10년 전 조회 1,947
10년 전 조회 2,237
10년 전 조회 4,043
10년 전 조회 2,421
10년 전 조회 1,801
10년 전 조회 2,794
10년 전 조회 2,533
10년 전 조회 2,265
10년 전 조회 2,214
10년 전 조회 2,444
10년 전 조회 2,107
10년 전 조회 1,711
10년 전 조회 2,461
10년 전 조회 2,916
10년 전 조회 2,464
10년 전 조회 2,490
10년 전 조회 3,148
10년 전 조회 4,208
10년 전 조회 1,844
10년 전 조회 1,859
10년 전 조회 2,339
10년 전 조회 2,593
10년 전 조회 2,094
10년 전 조회 1,785
10년 전 조회 1,940
10년 전 조회 2,063
10년 전 조회 2,275
10년 전 조회 2,420
10년 전 조회 3,130
10년 전 조회 1,738
10년 전 조회 1,933
11년 전 조회 6,035
11년 전 조회 1,813
11년 전 조회 2,295
11년 전 조회 2,253
11년 전 조회 2,707
11년 전 조회 2,157
11년 전 조회 2,399
11년 전 조회 2,468
11년 전 조회 2,856
11년 전 조회 2,612
11년 전 조회 3,479
11년 전 조회 2,888
11년 전 조회 2,981
11년 전 조회 2,067
11년 전 조회 2,339
11년 전 조회 2,288
11년 전 조회 1,935
11년 전 조회 1,763