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개

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

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
10년 전 조회 2,179
10년 전 조회 1,540
10년 전 조회 1,912
10년 전 조회 2,212
10년 전 조회 2,632
10년 전 조회 3,963
10년 전 조회 2,761
10년 전 조회 2,906
10년 전 조회 3,362
10년 전 조회 4,995
10년 전 조회 2,601
10년 전 조회 1,760
10년 전 조회 3,469
10년 전 조회 1,881
10년 전 조회 2,133
10년 전 조회 2,897
10년 전 조회 1,795
10년 전 조회 1,802
10년 전 조회 4,114
10년 전 조회 1,821
10년 전 조회 1,716
10년 전 조회 1,707
10년 전 조회 1,602
10년 전 조회 2,142
10년 전 조회 1,851
10년 전 조회 1,741
10년 전 조회 1,871
10년 전 조회 2,386
10년 전 조회 3,234
10년 전 조회 2,258
10년 전 조회 2,510
10년 전 조회 3,059
10년 전 조회 2,428
10년 전 조회 2,257
10년 전 조회 2,153
10년 전 조회 5,050
10년 전 조회 1,855
10년 전 조회 2,168
10년 전 조회 2,723
10년 전 조회 2,170
10년 전 조회 3,862
10년 전 조회 2,114
10년 전 조회 2,067
10년 전 조회 2,145
10년 전 조회 5,697
10년 전 조회 2,007
10년 전 조회 3,562
10년 전 조회 2,856
10년 전 조회 3,490
10년 전 조회 3,087
10년 전 조회 3,813
10년 전 조회 1,958
10년 전 조회 2,257
10년 전 조회 4,055
10년 전 조회 2,436
10년 전 조회 1,821
10년 전 조회 2,811
10년 전 조회 2,554
10년 전 조회 2,273
10년 전 조회 2,237
10년 전 조회 2,470
10년 전 조회 2,128
10년 전 조회 1,731
10년 전 조회 2,485
10년 전 조회 2,931
10년 전 조회 2,469
10년 전 조회 2,503
10년 전 조회 3,165
10년 전 조회 4,226
10년 전 조회 1,863
10년 전 조회 1,882
10년 전 조회 2,351
10년 전 조회 2,611
10년 전 조회 2,114
10년 전 조회 1,803
10년 전 조회 1,957
10년 전 조회 2,075
10년 전 조회 2,291
10년 전 조회 2,437
10년 전 조회 3,147
10년 전 조회 1,757
10년 전 조회 1,949
11년 전 조회 6,053
11년 전 조회 1,825
11년 전 조회 2,308
11년 전 조회 2,267
11년 전 조회 2,726
11년 전 조회 2,175
11년 전 조회 2,413
11년 전 조회 2,480
11년 전 조회 2,877
11년 전 조회 2,640
11년 전 조회 3,497
11년 전 조회 2,904
11년 전 조회 2,996
11년 전 조회 2,093
11년 전 조회 2,352
11년 전 조회 2,308
11년 전 조회 1,959
11년 전 조회 1,785