데모
<?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://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개
게시판 목록
팁게시판
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5727 |
잘살아보자
|
10년 전 | 485 | |
| 5726 | 10년 전 | 1066 | ||
| 5725 | 10년 전 | 1248 | ||
| 5724 | 10년 전 | 962 | ||
| 5723 |
잘살아보자
|
10년 전 | 453 | |
| 5722 |
잘살아보자
|
10년 전 | 426 | |
| 5721 |
잘살아보자
|
10년 전 | 410 | |
| 5720 |
잘살아보자
|
10년 전 | 405 | |
| 5719 |
잘살아보자
|
10년 전 | 481 | |
| 5718 |
잘살아보자
|
10년 전 | 596 | |
| 5717 |
잘살아보자
|
10년 전 | 852 | |
| 5716 |
잘살아보자
|
10년 전 | 382 | |
| 5715 |
starbros
|
10년 전 | 797 | |
| 5714 |
잘살아보자
|
10년 전 | 580 | |
| 5713 |
잘살아보자
|
10년 전 | 470 | |
| 5712 |
잘살아보자
|
10년 전 | 436 | |
| 5711 |
잘살아보자
|
10년 전 | 483 | |
| 5710 |
잘살아보자
|
10년 전 | 438 | |
| 5709 |
잘살아보자
|
10년 전 | 455 | |
| 5708 |
잘살아보자
|
10년 전 | 802 | |
| 5707 |
잘살아보자
|
10년 전 | 381 | |
| 5706 |
잘살아보자
|
10년 전 | 491 | |
| 5705 |
잘살아보자
|
10년 전 | 620 | |
| 5704 |
잘살아보자
|
10년 전 | 536 | |
| 5703 |
잘살아보자
|
10년 전 | 523 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기