u

외부이미지 서버에 저장하기

· 2015-05-06 (수) 23:22:38 · 4601 · 1
스크린샷 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개

좋은정보 감사합니다. ^^
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
15-11-20 조회 2,494
15-11-20 조회 2,455
15-11-20 조회 2,579
15-11-18 조회 2,593
15-11-18 조회 2,615
15-11-18 조회 2,582
15-11-17 조회 2,799
15-11-17 조회 2,551
15-11-17 조회 2,523
15-11-16 조회 2,573
15-11-16 조회 2,551
15-11-16 조회 2,747
15-11-15 조회 2,749
15-11-15 조회 2,603
15-11-15 조회 2,670
15-11-09 조회 2,864
15-11-09 조회 2,649
15-11-09 조회 2,706
15-11-06 조회 3,295
15-11-05 조회 2,737
15-11-05 조회 2,643
15-11-05 조회 2,756
15-11-04 조회 2,723
15-11-04 조회 2,720
15-11-04 조회 2,673
15-11-04 조회 2,986
15-11-04 조회 2,797
15-11-03 조회 2,773
15-11-02 조회 2,842
15-11-02 조회 2,620
15-11-02 조회 2,637
15-10-31 조회 2,514
15-10-27 조회 2,792
15-10-23 조회 2,715
15-10-23 조회 2,768
15-10-19 조회 3,855
15-10-15 조회 3,477
15-08-03 조회 3,097
15-07-29 조회 2,923
15-07-12 조회 3,429
15-05-07 조회 4,976
15-05-06 조회 4,602
15-05-06 조회 5,352
15-04-04 조회 4,423
15-04-04 조회 4,051
15-04-01 조회 5,664
15-02-10 조회 4,413
15-01-31 조회 4,445
15-01-23 조회 4,126
14-12-30 조회 3,672
14-12-23 조회 3,832
14-12-02 조회 4,193
14-10-17 조회 4,626
14-10-17 조회 4,781
14-10-07 조회 4,139
14-10-07 조회 5,344
14-10-04 조회 4,440
14-09-24 조회 4,721
14-09-24 조회 4,693
14-09-24 조회 4,167
14-09-23 조회 3,978
14-09-22 조회 3,622
14-09-21 조회 4,025
14-09-21 조회 4,249
14-09-21 조회 3,753
14-09-20 조회 4,313
14-09-19 조회 3,831
14-09-19 조회 3,531
14-09-19 조회 4,025
14-09-19 조회 3,714
14-09-18 조회 3,551
14-09-18 조회 3,970
14-09-18 조회 4,276
14-09-18 조회 3,868
14-09-18 조회 3,858
14-09-18 조회 3,891
14-09-18 조회 3,995
14-09-18 조회 4,726
14-09-17 조회 3,725
14-09-15 조회 3,821
14-09-11 조회 4,105
14-08-26 조회 3,993
14-08-26 조회 3,686
14-08-26 조회 3,484
14-08-26 조회 3,998
14-08-26 조회 3,823
14-08-26 조회 3,728
14-08-26 조회 3,809
14-08-26 조회 3,857
14-08-26 조회 3,640
14-08-26 조회 3,848
14-08-26 조회 3,877
14-08-26 조회 3,847
14-08-26 조회 3,872
14-08-26 조회 3,662
14-08-26 조회 3,659
14-08-26 조회 3,840
14-08-26 조회 3,545
14-08-26 조회 3,623
14-08-26 조회 3,424