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,125
10년 전 조회 1,491
10년 전 조회 1,857
10년 전 조회 2,164
10년 전 조회 2,597
10년 전 조회 3,917
10년 전 조회 2,723
10년 전 조회 2,856
10년 전 조회 3,317
10년 전 조회 4,952
10년 전 조회 2,568
10년 전 조회 1,710
10년 전 조회 3,415
10년 전 조회 1,839
10년 전 조회 2,082
10년 전 조회 2,862
10년 전 조회 1,741
10년 전 조회 1,760
10년 전 조회 4,074
10년 전 조회 1,785
10년 전 조회 1,666
10년 전 조회 1,657
10년 전 조회 1,550
10년 전 조회 2,091
10년 전 조회 1,810
10년 전 조회 1,692
10년 전 조회 1,827
10년 전 조회 2,323
10년 전 조회 3,187
10년 전 조회 2,205
10년 전 조회 2,462
10년 전 조회 3,028
10년 전 조회 2,389
10년 전 조회 2,212
10년 전 조회 2,124
10년 전 조회 5,023
10년 전 조회 1,809
10년 전 조회 2,129
10년 전 조회 2,684
10년 전 조회 2,124
10년 전 조회 3,830
10년 전 조회 2,078
10년 전 조회 2,021
10년 전 조회 2,105
10년 전 조회 5,659
10년 전 조회 1,973
10년 전 조회 3,529
10년 전 조회 2,815
10년 전 조회 3,463
10년 전 조회 3,049
10년 전 조회 3,770
10년 전 조회 1,914
10년 전 조회 2,217
10년 전 조회 4,024
10년 전 조회 2,394
10년 전 조회 1,773
10년 전 조회 2,768
10년 전 조회 2,506
10년 전 조회 2,241
10년 전 조회 2,198
10년 전 조회 2,420
10년 전 조회 2,083
10년 전 조회 1,686
10년 전 조회 2,431
10년 전 조회 2,890
10년 전 조회 2,446
10년 전 조회 2,467
10년 전 조회 3,122
10년 전 조회 4,188
10년 전 조회 1,817
10년 전 조회 1,832
10년 전 조회 2,316
10년 전 조회 2,572
10년 전 조회 2,073
10년 전 조회 1,750
10년 전 조회 1,915
10년 전 조회 2,038
10년 전 조회 2,252
10년 전 조회 2,400
10년 전 조회 3,112
10년 전 조회 1,705
10년 전 조회 1,907
11년 전 조회 5,998
11년 전 조회 1,792
11년 전 조회 2,272
11년 전 조회 2,228
11년 전 조회 2,689
11년 전 조회 2,119
11년 전 조회 2,373
11년 전 조회 2,446
11년 전 조회 2,820
11년 전 조회 2,587
11년 전 조회 3,449
11년 전 조회 2,855
11년 전 조회 2,953
11년 전 조회 2,041
11년 전 조회 2,318
11년 전 조회 2,262
11년 전 조회 1,913
11년 전 조회 1,729