function get_mine_type($exp){
$exp = strtolower($exp);
static $mime_type;
if(!is_array($mime_type)){
$mime_type = array();
$mime_type['dwg']='application/acad';
$mime_type['ccad']='application/clariscad';
$mime_type['dxf']='application/dxf';
$mime_type['mdb']='application/msaccess';
$mime_type['doc']='application/msword';
$mime_type['bin']='application/octet-stream';
$mime_type['pdf']='application/pdf';
$mime_type['ai']='application/postscript';
$mime_type['ps']='application/postscript';
$mime_type['eps']='application/postscript';
$mime_type['rtf']='application/rtf';
$mime_type['rtf']='application/rtf';
$mime_type['xls']='application/vnd.ms-excel';
$mime_type['ppt']='application/vnd.ms-powerpoint';
$mime_type['cdf']='application/x-cdf';
$mime_type['csh']='application/x-csh';
$mime_type['csh']='application/x-csh';
$mime_type['dvi']='application/x-dvi';
$mime_type['js']='application/x-javascript';
$mime_type['latex']='application/x-latex';
$mime_type['mif']='application/x-mif';
$mime_type['xls']='application/x-msexcel';
$mime_type['ppt']='application/x-mspowerpoint';
$mime_type['tcl']='application/x-tcl';
$mime_type['tex']='application/x-tex';
$mime_type['texinfo']='application/x-texinfo';
$mime_type['texi']='application/x-texinfo';
$mime_type['t']='application/x-troff';
$mime_type['tr']='application/x-troff';
$mime_type['roff']='application/x-troff';
$mime_type['man']='application/x-troff-man';
$mime_type['me']='application/x-troff-me';
$mime_type['ms']='application/x-troff-ms';
$mime_type['src']='application/x-wais-source';
$mime_type['zip']='application/zip';
$mime_type['au']='audio/basic';
$mime_type['snd']='audio/basic';
$mime_type['aif']='audio/x-aiff';
$mime_type['aiff']='audio/x-aiff';
$mime_type['aifc']='audio/x-aiff';
$mime_type['wav']='audio/x-wav';
$mime_type['gif']='image/gif';
$mime_type['ief']='image/ief';
$mime_type['jpeg']='image/jpeg';
$mime_type['jpg']='image/jpeg';
$mime_type['jpe']='image/jpeg';
$mime_type['tiff']='image/tiff';
$mime_type['tif']='image/tiff';
$mime_type['png']='image/png';
$mime_type['ras']='image/x-cmu-raster';
$mime_type['pnm']='image/x-portable-anymap';
$mime_type['pbm']='image/x-portable-bitmap';
$mime_type['pgm']='image/x-portable-graymap';
$mime_type['ppm']='image/x-portable-pixmap';
$mime_type['rgb']='image/x-rgb';
$mime_type['xbm']='image/x-xbitmap';
$mime_type['xpm']='image/x-xpixmap';
$mime_type['xwd']='image/x-xwindowdump';
$mime_type['gzip']='multipart/x-gzip';
$mime_type['zip']='multipart/x-zip';
$mime_type['css']='text/css';
$mime_type['html']='text/html';
$mime_type['htm']='text/html';
$mime_type['txt']='text/plain';
$mime_type['rtx']='text/richtext';
$mime_type['tsv']='text/tab-separated-values';
$mime_type['xml']='text/xml';
$mime_type['etx']='text/x-setext';
$mime_type['xsl']='text/xsl';
$mime_type['mpeg']='video/mpeg';
$mime_type['mpg']='video/mpeg';
$mime_type['mpe']='video/mpeg';
$mime_type['mov']='video/quicktime';
$mime_type['qt']='video/quicktime';
$mime_type['avi']='video/x-msvideo';
$mime_type['movie']='video/x-sgi-movie';
$mime_type['swf']='application/x-shockwave-flash';
}
if(isset($mime_type[$exp])){
return $mime_type[$exp] ;
}else{
return false;
}
}
---------------=------------=-----------------
http_file_manager 속에 있는겁니다.
볼꺼도 없습니다.
파일의 해더 뒤지는 것도 아니고 그냥
확장자를 키로 써서 그에맞는 mime 타입 문자열을 빼오는 겁니다.
ex>
print get_mine_type('avi');
->video/x-msvideo
---------=-----------=---------
저작권이 대세인것 같은데
저작자는 mins(공대여자) 즉, 접니다.
그러니 사용할 때마다 마음속으로
"공대여자 예뼜다."를 향숙이 버전으로 외치고 사용해주세요.
------------------------=------------------------=-----------
아... 타입 더 추가하신 분은 알려주세요.~
----------------------------------------------------------=-----
추가
대소문자 구분없이 전부 소문자로 바꿔서 비교합니다.
swf 추가했어요~
http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=tipntech&wr_id=47227&sca=%C7%D4%BC%F6<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]</div>
$exp = strtolower($exp);
static $mime_type;
if(!is_array($mime_type)){
$mime_type = array();
$mime_type['dwg']='application/acad';
$mime_type['ccad']='application/clariscad';
$mime_type['dxf']='application/dxf';
$mime_type['mdb']='application/msaccess';
$mime_type['doc']='application/msword';
$mime_type['bin']='application/octet-stream';
$mime_type['pdf']='application/pdf';
$mime_type['ai']='application/postscript';
$mime_type['ps']='application/postscript';
$mime_type['eps']='application/postscript';
$mime_type['rtf']='application/rtf';
$mime_type['rtf']='application/rtf';
$mime_type['xls']='application/vnd.ms-excel';
$mime_type['ppt']='application/vnd.ms-powerpoint';
$mime_type['cdf']='application/x-cdf';
$mime_type['csh']='application/x-csh';
$mime_type['csh']='application/x-csh';
$mime_type['dvi']='application/x-dvi';
$mime_type['js']='application/x-javascript';
$mime_type['latex']='application/x-latex';
$mime_type['mif']='application/x-mif';
$mime_type['xls']='application/x-msexcel';
$mime_type['ppt']='application/x-mspowerpoint';
$mime_type['tcl']='application/x-tcl';
$mime_type['tex']='application/x-tex';
$mime_type['texinfo']='application/x-texinfo';
$mime_type['texi']='application/x-texinfo';
$mime_type['t']='application/x-troff';
$mime_type['tr']='application/x-troff';
$mime_type['roff']='application/x-troff';
$mime_type['man']='application/x-troff-man';
$mime_type['me']='application/x-troff-me';
$mime_type['ms']='application/x-troff-ms';
$mime_type['src']='application/x-wais-source';
$mime_type['zip']='application/zip';
$mime_type['au']='audio/basic';
$mime_type['snd']='audio/basic';
$mime_type['aif']='audio/x-aiff';
$mime_type['aiff']='audio/x-aiff';
$mime_type['aifc']='audio/x-aiff';
$mime_type['wav']='audio/x-wav';
$mime_type['gif']='image/gif';
$mime_type['ief']='image/ief';
$mime_type['jpeg']='image/jpeg';
$mime_type['jpg']='image/jpeg';
$mime_type['jpe']='image/jpeg';
$mime_type['tiff']='image/tiff';
$mime_type['tif']='image/tiff';
$mime_type['png']='image/png';
$mime_type['ras']='image/x-cmu-raster';
$mime_type['pnm']='image/x-portable-anymap';
$mime_type['pbm']='image/x-portable-bitmap';
$mime_type['pgm']='image/x-portable-graymap';
$mime_type['ppm']='image/x-portable-pixmap';
$mime_type['rgb']='image/x-rgb';
$mime_type['xbm']='image/x-xbitmap';
$mime_type['xpm']='image/x-xpixmap';
$mime_type['xwd']='image/x-xwindowdump';
$mime_type['gzip']='multipart/x-gzip';
$mime_type['zip']='multipart/x-zip';
$mime_type['css']='text/css';
$mime_type['html']='text/html';
$mime_type['htm']='text/html';
$mime_type['txt']='text/plain';
$mime_type['rtx']='text/richtext';
$mime_type['tsv']='text/tab-separated-values';
$mime_type['xml']='text/xml';
$mime_type['etx']='text/x-setext';
$mime_type['xsl']='text/xsl';
$mime_type['mpeg']='video/mpeg';
$mime_type['mpg']='video/mpeg';
$mime_type['mpe']='video/mpeg';
$mime_type['mov']='video/quicktime';
$mime_type['qt']='video/quicktime';
$mime_type['avi']='video/x-msvideo';
$mime_type['movie']='video/x-sgi-movie';
$mime_type['swf']='application/x-shockwave-flash';
}
if(isset($mime_type[$exp])){
return $mime_type[$exp] ;
}else{
return false;
}
}
---------------=------------=-----------------
http_file_manager 속에 있는겁니다.
볼꺼도 없습니다.
파일의 해더 뒤지는 것도 아니고 그냥
확장자를 키로 써서 그에맞는 mime 타입 문자열을 빼오는 겁니다.
ex>
print get_mine_type('avi');
->video/x-msvideo
---------=-----------=---------
저작권이 대세인것 같은데
저작자는 mins(공대여자) 즉, 접니다.
그러니 사용할 때마다 마음속으로
"공대여자 예뼜다."를 향숙이 버전으로 외치고 사용해주세요.
------------------------=------------------------=-----------
아... 타입 더 추가하신 분은 알려주세요.~
----------------------------------------------------------=-----
추가
대소문자 구분없이 전부 소문자로 바꿔서 비교합니다.
swf 추가했어요~
http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=tipntech&wr_id=47227&sca=%C7%D4%BC%F6<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]</div>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 148 | ||
| 8229 | 9년 전 | 127 | ||
| 8228 |
커네드커네드
|
9년 전 | 171 | |
| 8227 | 9년 전 | 217 | ||
| 8226 | 9년 전 | 232 | ||
| 8225 | 9년 전 | 210 | ||
| 8224 | 9년 전 | 217 | ||
| 8223 | 9년 전 | 187 | ||
| 8222 |
|
9년 전 | 254 | |
| 8221 | 9년 전 | 164 | ||
| 8220 | 9년 전 | 197 | ||
| 8219 | 9년 전 | 164 | ||
| 8218 | 9년 전 | 204 | ||
| 8217 |
star3840
|
9년 전 | 177 | |
| 8216 | 9년 전 | 246 | ||
| 8215 | 9년 전 | 190 | ||
| 8214 | 9년 전 | 299 | ||
| 8213 | 9년 전 | 256 | ||
| 8212 | 9년 전 | 169 | ||
| 8211 | 9년 전 | 341 | ||
| 8210 | 9년 전 | 342 | ||
| 8209 | 9년 전 | 419 | ||
| 8208 | 9년 전 | 307 | ||
| 8207 | 9년 전 | 314 | ||
| 8206 |
|
9년 전 | 263 | |
| 8205 | 9년 전 | 240 | ||
| 8204 | 9년 전 | 227 | ||
| 8203 | 9년 전 | 293 | ||
| 8202 | 9년 전 | 211 | ||
| 8201 | 9년 전 | 254 | ||
| 8200 | 9년 전 | 269 | ||
| 8199 | 9년 전 | 280 | ||
| 8198 | 9년 전 | 242 | ||
| 8197 | 9년 전 | 234 | ||
| 8196 | 9년 전 | 648 | ||
| 8195 | 9년 전 | 243 | ||
| 8194 | 9년 전 | 356 | ||
| 8193 | 9년 전 | 260 | ||
| 8192 | 9년 전 | 273 | ||
| 8191 | 9년 전 | 225 | ||
| 8190 | 9년 전 | 219 | ||
| 8189 | 9년 전 | 279 | ||
| 8188 | 9년 전 | 212 | ||
| 8187 | 9년 전 | 219 | ||
| 8186 | 9년 전 | 219 | ||
| 8185 | 9년 전 | 382 | ||
| 8184 | 9년 전 | 173 | ||
| 8183 | 9년 전 | 391 | ||
| 8182 | 9년 전 | 252 | ||
| 8181 | 9년 전 | 206 | ||
| 8180 | 9년 전 | 784 | ||
| 8179 | 9년 전 | 551 | ||
| 8178 | 9년 전 | 413 | ||
| 8177 |
kiplayer
|
9년 전 | 413 | |
| 8176 | 9년 전 | 442 | ||
| 8175 | 9년 전 | 335 | ||
| 8174 | 9년 전 | 326 | ||
| 8173 | 9년 전 | 415 | ||
| 8172 | 9년 전 | 295 | ||
| 8171 | 9년 전 | 259 | ||
| 8170 | 9년 전 | 376 | ||
| 8169 |
커네드커네드
|
9년 전 | 325 | |
| 8168 | 9년 전 | 407 | ||
| 8167 | 9년 전 | 399 | ||
| 8166 | 9년 전 | 301 | ||
| 8165 | 9년 전 | 246 | ||
| 8164 | 9년 전 | 376 | ||
| 8163 | 9년 전 | 374 | ||
| 8162 | 9년 전 | 370 | ||
| 8161 | 9년 전 | 389 | ||
| 8160 |
|
9년 전 | 591 | |
| 8159 | 9년 전 | 534 | ||
| 8158 | 9년 전 | 335 | ||
| 8157 | 9년 전 | 444 | ||
| 8156 | 9년 전 | 335 | ||
| 8155 | 9년 전 | 331 | ||
| 8154 |
00년생용띠
|
9년 전 | 668 | |
| 8153 | 9년 전 | 307 | ||
| 8152 |
|
9년 전 | 486 | |
| 8151 | 9년 전 | 486 | ||
| 8150 | 9년 전 | 590 | ||
| 8149 |
Jangfolk
|
9년 전 | 449 | |
| 8148 | 9년 전 | 265 | ||
| 8147 | 9년 전 | 450 | ||
| 8146 | 9년 전 | 536 | ||
| 8145 | 9년 전 | 489 | ||
| 8144 | 9년 전 | 457 | ||
| 8143 | 9년 전 | 286 | ||
| 8142 | 9년 전 | 501 | ||
| 8141 | 9년 전 | 448 | ||
| 8140 | 9년 전 | 1009 | ||
| 8139 | 9년 전 | 361 | ||
| 8138 |
전갈자리남자
|
9년 전 | 462 | |
| 8137 | 9년 전 | 501 | ||
| 8136 | 9년 전 | 825 | ||
| 8135 |
|
9년 전 | 870 | |
| 8134 |
PlayPixel
|
9년 전 | 606 | |
| 8133 |
|
9년 전 | 512 | |
| 8132 | 9년 전 | 550 | ||
| 8131 | 9년 전 | 906 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기