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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8030 | 9년 전 | 378 | ||
| 8029 | 9년 전 | 313 | ||
| 8028 | 9년 전 | 268 | ||
| 8027 | 9년 전 | 285 | ||
| 8026 | 9년 전 | 342 | ||
| 8025 | 9년 전 | 391 | ||
| 8024 | 9년 전 | 348 | ||
| 8023 | 9년 전 | 396 | ||
| 8022 | 9년 전 | 323 | ||
| 8021 | 9년 전 | 331 | ||
| 8020 | 9년 전 | 323 | ||
| 8019 | 9년 전 | 344 | ||
| 8018 | 9년 전 | 449 | ||
| 8017 | 9년 전 | 539 | ||
| 8016 | 9년 전 | 336 | ||
| 8015 | 9년 전 | 392 | ||
| 8014 | 9년 전 | 329 | ||
| 8013 | 9년 전 | 241 | ||
| 8012 | 9년 전 | 245 | ||
| 8011 | 9년 전 | 449 | ||
| 8010 | 9년 전 | 305 | ||
| 8009 | 9년 전 | 296 | ||
| 8008 | 9년 전 | 291 | ||
| 8007 | 9년 전 | 433 | ||
| 8006 | 9년 전 | 466 | ||
| 8005 |
|
9년 전 | 971 | |
| 8004 | 9년 전 | 362 | ||
| 8003 | 9년 전 | 428 | ||
| 8002 | 9년 전 | 324 | ||
| 8001 |
|
9년 전 | 667 | |
| 8000 | 9년 전 | 423 | ||
| 7999 | 9년 전 | 377 | ||
| 7998 | 9년 전 | 433 | ||
| 7997 | 9년 전 | 315 | ||
| 7996 | 9년 전 | 535 | ||
| 7995 | 9년 전 | 459 | ||
| 7994 | 9년 전 | 339 | ||
| 7993 | 9년 전 | 401 | ||
| 7992 | 9년 전 | 516 | ||
| 7991 | 9년 전 | 254 | ||
| 7990 | 9년 전 | 296 | ||
| 7989 | 9년 전 | 308 | ||
| 7988 | 9년 전 | 735 | ||
| 7987 | 9년 전 | 431 | ||
| 7986 | 9년 전 | 425 | ||
| 7985 | 9년 전 | 512 | ||
| 7984 | 9년 전 | 434 | ||
| 7983 | 9년 전 | 663 | ||
| 7982 | 9년 전 | 524 | ||
| 7981 | 9년 전 | 476 | ||
| 7980 | 9년 전 | 499 | ||
| 7979 | 9년 전 | 479 | ||
| 7978 | 9년 전 | 458 | ||
| 7977 | 9년 전 | 395 | ||
| 7976 | 9년 전 | 852 | ||
| 7975 | 9년 전 | 364 | ||
| 7974 | 9년 전 | 400 | ||
| 7973 | 9년 전 | 601 | ||
| 7972 | 9년 전 | 386 | ||
| 7971 | 9년 전 | 460 | ||
| 7970 | 9년 전 | 305 | ||
| 7969 | 9년 전 | 549 | ||
| 7968 | 9년 전 | 389 | ||
| 7967 | 9년 전 | 379 | ||
| 7966 | 9년 전 | 375 | ||
| 7965 |
|
9년 전 | 1018 | |
| 7964 | 9년 전 | 400 | ||
| 7963 | 9년 전 | 404 | ||
| 7962 | 9년 전 | 382 | ||
| 7961 |
전갈자리남자
|
9년 전 | 509 | |
| 7960 | 9년 전 | 969 | ||
| 7959 | 9년 전 | 556 | ||
| 7958 | 9년 전 | 409 | ||
| 7957 | 9년 전 | 369 | ||
| 7956 | 9년 전 | 371 | ||
| 7955 | 9년 전 | 462 | ||
| 7954 | 9년 전 | 384 | ||
| 7953 | 9년 전 | 437 | ||
| 7952 | 9년 전 | 360 | ||
| 7951 | 9년 전 | 506 | ||
| 7950 | 9년 전 | 396 | ||
| 7949 | 9년 전 | 390 | ||
| 7948 | 9년 전 | 324 | ||
| 7947 | 9년 전 | 940 | ||
| 7946 | 9년 전 | 442 | ||
| 7945 | 9년 전 | 399 | ||
| 7944 | 9년 전 | 429 | ||
| 7943 | 9년 전 | 387 | ||
| 7942 | 9년 전 | 408 | ||
| 7941 | 9년 전 | 399 | ||
| 7940 | 9년 전 | 887 | ||
| 7939 | 9년 전 | 359 | ||
| 7938 | 9년 전 | 392 | ||
| 7937 | 9년 전 | 285 | ||
| 7936 | 9년 전 | 887 | ||
| 7935 | 9년 전 | 456 | ||
| 7934 | 9년 전 | 421 | ||
| 7933 | 9년 전 | 522 | ||
| 7932 | 9년 전 | 494 | ||
| 7931 | 9년 전 | 545 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기