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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 330 |
prosper
|
20년 전 | 2239 | |
| 329 |
prosper
|
20년 전 | 1846 | |
| 328 |
prosper
|
20년 전 | 1659 | |
| 327 | 20년 전 | 3738 | ||
| 326 | 20년 전 | 4816 | ||
| 325 |
hwatta
|
20년 전 | 2432 | |
| 324 |
|
20년 전 | 3115 | |
| 323 | 20년 전 | 5822 | ||
| 322 |
hwatta
|
20년 전 | 2810 | |
| 321 |
hwatta
|
20년 전 | 2287 | |
| 320 |
yesmoa
|
20년 전 | 4545 | |
| 319 | 20년 전 | 2639 | ||
| 318 | 20년 전 | 2220 | ||
| 317 |
kyodon
|
20년 전 | 2747 | |
| 316 | 20년 전 | 2548 | ||
| 315 |
|
20년 전 | 2862 | |
| 314 |
|
20년 전 | 3305 | |
| 313 |
|
20년 전 | 2619 | |
| 312 |
yesmoa
|
20년 전 | 4694 | |
| 311 | 20년 전 | 3222 | ||
| 310 |
홀로남은자
|
20년 전 | 4527 | |
| 309 | 20년 전 | 2983 | ||
| 308 | 20년 전 | 4105 | ||
| 307 | 20년 전 | 4339 | ||
| 306 | 20년 전 | 7008 | ||
| 305 | 20년 전 | 3840 | ||
| 304 | 20년 전 | 2735 | ||
| 303 |
크리스탈처럼
|
20년 전 | 4374 | |
| 302 | 20년 전 | 2184 | ||
| 301 |
|
20년 전 | 4306 | |
| 300 | 20년 전 | 3764 | ||
| 299 | 20년 전 | 2559 | ||
| 298 | 20년 전 | 4791 | ||
| 297 |
|
20년 전 | 2503 | |
| 296 | 20년 전 | 4489 | ||
| 295 | 20년 전 | 3547 | ||
| 294 | 20년 전 | 3566 | ||
| 293 | 20년 전 | 3802 | ||
| 292 | 20년 전 | 3180 | ||
| 291 |
yesmoa
|
20년 전 | 5896 | |
| 290 | 20년 전 | 2918 | ||
| 289 | 20년 전 | 5824 | ||
| 288 |
|
20년 전 | 2345 | |
| 287 |
|
20년 전 | 1753 | |
| 286 |
|
20년 전 | 2123 | |
| 285 |
|
20년 전 | 3508 | |
| 284 |
|
20년 전 | 2015 | |
| 283 |
|
20년 전 | 4380 | |
| 282 | 20년 전 | 3358 | ||
| 281 |
|
20년 전 | 2184 | |
| 280 |
|
20년 전 | 7782 | |
| 279 | 20년 전 | 5521 | ||
| 278 | 20년 전 | 2966 | ||
| 277 |
|
20년 전 | 5548 | |
| 276 | 20년 전 | 2339 | ||
| 275 | 20년 전 | 2569 | ||
| 274 | 20년 전 | 2335 | ||
| 273 | 20년 전 | 2184 | ||
| 272 | 20년 전 | 2108 | ||
| 271 | 20년 전 | 2575 | ||
| 270 | 20년 전 | 2557 | ||
| 269 | 20년 전 | 2440 | ||
| 268 | 20년 전 | 2648 | ||
| 267 | 20년 전 | 2343 | ||
| 266 | 20년 전 | 2547 | ||
| 265 | 20년 전 | 3481 | ||
| 264 |
|
20년 전 | 5335 | |
| 263 |
|
20년 전 | 3693 | |
| 262 | 20년 전 | 3146 | ||
| 261 |
허저비
|
20년 전 | 5905 | |
| 260 |
|
20년 전 | 5693 | |
| 259 | 20년 전 | 4114 | ||
| 258 | 20년 전 | 2364 | ||
| 257 | 20년 전 | 3163 | ||
| 256 | 20년 전 | 1880 | ||
| 255 | 20년 전 | 1545 | ||
| 254 | 20년 전 | 3119 | ||
| 253 | 20년 전 | 3531 | ||
| 252 | 20년 전 | 5082 | ||
| 251 | 20년 전 | 5788 | ||
| 250 | 20년 전 | 3652 | ||
| 249 | 20년 전 | 4990 | ||
| 248 | 20년 전 | 3270 | ||
| 247 | 20년 전 | 3611 | ||
| 246 |
|
20년 전 | 7920 | |
| 245 |
|
20년 전 | 5884 | |
| 244 | 20년 전 | 4465 | ||
| 243 |
|
20년 전 | 4016 | |
| 242 | 20년 전 | 2745 | ||
| 241 | 20년 전 | 2687 | ||
| 240 | 20년 전 | 2320 | ||
| 239 | 20년 전 | 1616 | ||
| 238 |
아우겐나이스
|
20년 전 | 2234 | |
| 237 |
email
|
20년 전 | 3653 | |
| 236 | 20년 전 | 4117 | ||
| 235 | 20년 전 | 10440 | ||
| 234 | 20년 전 | 5037 | ||
| 233 | 20년 전 | 3352 | ||
| 232 | 20년 전 | 3168 | ||
| 231 | 20년 전 | 3803 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기