데모
<?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에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5677 |
패션리스트
|
10년 전 | 2368 | |
| 5676 |
패션리스트
|
10년 전 | 2326 | |
| 5675 | 10년 전 | 2246 | ||
| 5674 |
|
10년 전 | 1377 | |
| 5673 |
|
10년 전 | 2127 | |
| 5672 |
|
10년 전 | 1743 | |
| 5671 |
|
10년 전 | 2821 | |
| 5670 | 10년 전 | 1206 | ||
| 5669 |
|
10년 전 | 2006 | |
| 5668 | 10년 전 | 1099 | ||
| 5667 | 10년 전 | 1371 | ||
| 5666 |
|
10년 전 | 1710 | |
| 5665 |
|
10년 전 | 1265 | |
| 5664 |
|
10년 전 | 1002 | |
| 5663 | 10년 전 | 2450 | ||
| 5662 | 10년 전 | 996 | ||
| 5661 |
AniNest
|
10년 전 | 2693 | |
| 5660 |
untitled
|
10년 전 | 2315 | |
| 5659 |
프로그래머7
|
10년 전 | 1702 | |
| 5658 |
untitled
|
10년 전 | 2314 | |
| 5657 |
untitled
|
10년 전 | 1843 | |
| 5656 |
untitled
|
10년 전 | 2604 | |
| 5655 |
|
10년 전 | 2721 | |
| 5654 | 10년 전 | 1382 | ||
| 5653 |
|
10년 전 | 1786 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기