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,126
10년 전 조회 1,494
10년 전 조회 1,861
10년 전 조회 2,167
10년 전 조회 2,602
10년 전 조회 3,924
10년 전 조회 2,728
10년 전 조회 2,859
10년 전 조회 3,320
10년 전 조회 4,955
10년 전 조회 2,571
10년 전 조회 1,713
10년 전 조회 3,419
10년 전 조회 1,840
10년 전 조회 2,083
10년 전 조회 2,862
10년 전 조회 1,745
10년 전 조회 1,768
10년 전 조회 4,074
10년 전 조회 1,788
10년 전 조회 1,668
10년 전 조회 1,661
10년 전 조회 1,552
10년 전 조회 2,093
10년 전 조회 1,812
10년 전 조회 1,695
10년 전 조회 1,830
10년 전 조회 2,330
10년 전 조회 3,192
10년 전 조회 2,211
10년 전 조회 2,465
10년 전 조회 3,028
10년 전 조회 2,393
10년 전 조회 2,214
10년 전 조회 2,126
10년 전 조회 5,024
10년 전 조회 1,814
10년 전 조회 2,132
10년 전 조회 2,688
10년 전 조회 2,127
10년 전 조회 3,833
10년 전 조회 2,080
10년 전 조회 2,024
10년 전 조회 2,108
10년 전 조회 5,664
10년 전 조회 1,975
10년 전 조회 3,536
10년 전 조회 2,818
10년 전 조회 3,468
10년 전 조회 3,052
10년 전 조회 3,774
10년 전 조회 1,917
10년 전 조회 2,218
10년 전 조회 4,026
10년 전 조회 2,399
10년 전 조회 1,776
10년 전 조회 2,772
10년 전 조회 2,511
10년 전 조회 2,245
10년 전 조회 2,201
10년 전 조회 2,421
10년 전 조회 2,089
10년 전 조회 1,689
10년 전 조회 2,435
10년 전 조회 2,894
10년 전 조회 2,447
10년 전 조회 2,469
10년 전 조회 3,123
10년 전 조회 4,191
10년 전 조회 1,823
10년 전 조회 1,833
10년 전 조회 2,320
10년 전 조회 2,574
10년 전 조회 2,074
10년 전 조회 1,753
10년 전 조회 1,920
10년 전 조회 2,040
10년 전 조회 2,256
10년 전 조회 2,402
10년 전 조회 3,116
10년 전 조회 1,708
10년 전 조회 1,908
11년 전 조회 6,001
11년 전 조회 1,794
11년 전 조회 2,276
11년 전 조회 2,228
11년 전 조회 2,691
11년 전 조회 2,121
11년 전 조회 2,375
11년 전 조회 2,448
11년 전 조회 2,823
11년 전 조회 2,590
11년 전 조회 3,453
11년 전 조회 2,861
11년 전 조회 2,954
11년 전 조회 2,042
11년 전 조회 2,321
11년 전 조회 2,266
11년 전 조회 1,915
11년 전 조회 1,732