데모
<?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개
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 230 | 20년 전 | 2060 | ||
| 229 | 20년 전 | 3134 | ||
| 228 | 20년 전 | 3322 | ||
| 227 | 20년 전 | 2393 | ||
| 226 | 20년 전 | 5475 | ||
| 225 | 20년 전 | 2519 | ||
| 224 | 20년 전 | 2967 | ||
| 223 | 20년 전 | 4204 | ||
| 222 | 20년 전 | 2604 | ||
| 221 | 20년 전 | 2289 | ||
| 220 | 20년 전 | 3676 | ||
| 219 | 20년 전 | 2070 | ||
| 218 | 20년 전 | 3564 | ||
| 217 | 20년 전 | 2477 | ||
| 216 | 20년 전 | 2910 | ||
| 215 | 20년 전 | 2225 | ||
| 214 | 20년 전 | 3335 | ||
| 213 | 20년 전 | 2916 | ||
| 212 | 20년 전 | 3047 | ||
| 211 | 20년 전 | 2145 | ||
| 210 | 20년 전 | 1893 | ||
| 209 | 20년 전 | 2352 | ||
| 208 | 20년 전 | 1974 | ||
| 207 | 20년 전 | 1673 | ||
| 206 | 20년 전 | 1855 | ||
| 205 | 20년 전 | 3947 | ||
| 204 | 20년 전 | 1672 | ||
| 203 | 20년 전 | 2009 | ||
| 202 | 20년 전 | 2357 | ||
| 201 | 20년 전 | 1822 | ||
| 200 | 20년 전 | 2955 | ||
| 199 | 20년 전 | 2004 | ||
| 198 | 20년 전 | 2084 | ||
| 197 | 20년 전 | 3649 | ||
| 196 | 20년 전 | 2979 | ||
| 195 | 20년 전 | 2091 | ||
| 194 | 20년 전 | 10243 | ||
| 193 | 20년 전 | 2243 | ||
| 192 | 20년 전 | 1600 | ||
| 191 | 20년 전 | 2663 | ||
| 190 | 20년 전 | 2289 | ||
| 189 | 20년 전 | 1679 | ||
| 188 | 20년 전 | 1476 | ||
| 187 | 20년 전 | 1903 | ||
| 186 | 20년 전 | 1709 | ||
| 185 | 20년 전 | 1757 | ||
| 184 | 20년 전 | 2348 | ||
| 183 | 20년 전 | 1559 | ||
| 182 | 20년 전 | 1484 | ||
| 181 | 20년 전 | 1623 | ||
| 180 | 20년 전 | 2717 | ||
| 179 | 20년 전 | 1802 | ||
| 178 | 20년 전 | 1857 | ||
| 177 | 20년 전 | 1980 | ||
| 176 | 20년 전 | 1801 | ||
| 175 | 20년 전 | 1871 | ||
| 174 | 20년 전 | 1694 | ||
| 173 | 20년 전 | 2058 | ||
| 172 | 20년 전 | 1784 | ||
| 171 | 20년 전 | 2557 | ||
| 170 | 20년 전 | 2268 | ||
| 169 | 20년 전 | 2548 | ||
| 168 | 20년 전 | 1477 | ||
| 167 | 20년 전 | 1578 | ||
| 166 | 20년 전 | 2152 | ||
| 165 | 20년 전 | 1627 | ||
| 164 | 20년 전 | 3768 | ||
| 163 | 20년 전 | 2661 | ||
| 162 | 20년 전 | 2079 | ||
| 161 | 20년 전 | 2787 | ||
| 160 | 20년 전 | 1732 | ||
| 159 | 20년 전 | 1609 | ||
| 158 | 20년 전 | 2561 | ||
| 157 | 20년 전 | 1488 | ||
| 156 | 20년 전 | 1737 | ||
| 155 | 20년 전 | 3227 | ||
| 154 | 20년 전 | 1892 | ||
| 153 | 20년 전 | 1622 | ||
| 152 | 20년 전 | 4948 | ||
| 151 | 20년 전 | 4575 | ||
| 150 | 20년 전 | 3513 | ||
| 149 | 20년 전 | 3790 | ||
| 148 | 20년 전 | 7071 | ||
| 147 | 20년 전 | 3549 | ||
| 146 | 20년 전 | 2619 | ||
| 145 | 20년 전 | 2613 | ||
| 144 | 20년 전 | 7166 | ||
| 143 | 20년 전 | 4597 | ||
| 142 | 20년 전 | 1900 | ||
| 141 | 20년 전 | 3251 | ||
| 140 | 20년 전 | 1958 | ||
| 139 | 20년 전 | 1573 | ||
| 138 | 20년 전 | 2305 | ||
| 137 | 20년 전 | 1777 | ||
| 136 | 20년 전 | 1453 | ||
| 135 | 20년 전 | 1784 | ||
| 134 | 20년 전 | 2965 | ||
| 133 | 20년 전 | 2448 | ||
| 132 | 20년 전 | 1705 | ||
| 131 | 20년 전 | 1637 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기