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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7730 | 10년 전 | 1294 | ||
| 7729 | 10년 전 | 1105 | ||
| 7728 |
잘살아보자
|
10년 전 | 572 | |
| 7727 |
잘살아보자
|
10년 전 | 466 | |
| 7726 |
잘살아보자
|
10년 전 | 800 | |
| 7725 |
잘살아보자
|
10년 전 | 530 | |
| 7724 |
잘살아보자
|
10년 전 | 439 | |
| 7723 |
잘살아보자
|
10년 전 | 507 | |
| 7722 |
잘살아보자
|
10년 전 | 444 | |
| 7721 |
잘살아보자
|
10년 전 | 485 | |
| 7720 |
잘살아보자
|
10년 전 | 425 | |
| 7719 |
비긴어게인
|
10년 전 | 675 | |
| 7718 |
|
10년 전 | 2509 | |
| 7717 |
잘살아보자
|
10년 전 | 636 | |
| 7716 |
잘살아보자
|
10년 전 | 380 | |
| 7715 |
잘살아보자
|
10년 전 | 411 | |
| 7714 |
잘살아보자
|
10년 전 | 458 | |
| 7713 | 10년 전 | 1757 | ||
| 7712 | 10년 전 | 1688 | ||
| 7711 | 10년 전 | 1070 | ||
| 7710 | 10년 전 | 1361 | ||
| 7709 | 10년 전 | 1493 | ||
| 7708 | 10년 전 | 1445 | ||
| 7707 | 10년 전 | 838 | ||
| 7706 |
별지기천사
|
10년 전 | 555 | |
| 7705 | 10년 전 | 1054 | ||
| 7704 |
ICONdesignstudio
|
10년 전 | 596 | |
| 7703 | 10년 전 | 568 | ||
| 7702 |
|
10년 전 | 694 | |
| 7701 | 10년 전 | 1391 | ||
| 7700 | 10년 전 | 1087 | ||
| 7699 | 10년 전 | 567 | ||
| 7698 | 10년 전 | 1116 | ||
| 7697 | 10년 전 | 5124 | ||
| 7696 | 10년 전 | 625 | ||
| 7695 | 10년 전 | 1660 | ||
| 7694 | 10년 전 | 1030 | ||
| 7693 | 10년 전 | 1526 | ||
| 7692 | 10년 전 | 1262 | ||
| 7691 | 10년 전 | 794 | ||
| 7690 | 10년 전 | 1372 | ||
| 7689 | 10년 전 | 992 | ||
| 7688 | 10년 전 | 584 | ||
| 7687 |
파랑새1597
|
10년 전 | 563 | |
| 7686 | 10년 전 | 812 | ||
| 7685 | 10년 전 | 1329 | ||
| 7684 | 10년 전 | 781 | ||
| 7683 | 10년 전 | 1038 | ||
| 7682 | 10년 전 | 957 | ||
| 7681 | 10년 전 | 630 | ||
| 7680 | 10년 전 | 974 | ||
| 7679 | 10년 전 | 476 | ||
| 7678 | 10년 전 | 703 | ||
| 7677 | 10년 전 | 607 | ||
| 7676 |
|
10년 전 | 926 | |
| 7675 |
|
10년 전 | 1132 | |
| 7674 | 10년 전 | 1034 | ||
| 7673 | 10년 전 | 733 | ||
| 7672 | 10년 전 | 1078 | ||
| 7671 | 10년 전 | 857 | ||
| 7670 | 10년 전 | 623 | ||
| 7669 |
mashmellow
|
10년 전 | 1213 | |
| 7668 | 10년 전 | 695 | ||
| 7667 | 10년 전 | 971 | ||
| 7666 |
senseme
|
10년 전 | 632 | |
| 7665 | 10년 전 | 488 | ||
| 7664 | 10년 전 | 1878 | ||
| 7663 |
mixx애교
|
10년 전 | 966 | |
| 7662 | 10년 전 | 1019 | ||
| 7661 |
hkhkah
|
10년 전 | 772 | |
| 7660 | 10년 전 | 1044 | ||
| 7659 |
커네드커네드
|
10년 전 | 913 | |
| 7658 |
바람돌이팡
|
10년 전 | 648 | |
| 7657 | 10년 전 | 1151 | ||
| 7656 | 10년 전 | 1548 | ||
| 7655 | 10년 전 | 958 | ||
| 7654 |
개발짜증나
|
10년 전 | 843 | |
| 7653 |
네이비칼라
|
10년 전 | 874 | |
| 7652 |
밥먹고합시다
|
10년 전 | 795 | |
| 7651 |
플라이SINJI
|
10년 전 | 1497 | |
| 7650 |
개발짜증나
|
10년 전 | 1391 | |
| 7649 | 10년 전 | 438 | ||
| 7648 |
이미영ㅇㅇ
|
10년 전 | 852 | |
| 7647 | 10년 전 | 415 | ||
| 7646 | 10년 전 | 779 | ||
| 7645 | 10년 전 | 2291 | ||
| 7644 | 10년 전 | 798 | ||
| 7643 |
|
10년 전 | 2851 | |
| 7642 | 10년 전 | 1496 | ||
| 7641 | 10년 전 | 1112 | ||
| 7640 |
개발짜증나
|
10년 전 | 460 | |
| 7639 |
|
10년 전 | 803 | |
| 7638 |
개발짜증나
|
10년 전 | 1116 | |
| 7637 | 10년 전 | 1529 | ||
| 7636 | 10년 전 | 2891 | ||
| 7635 | 10년 전 | 1670 | ||
| 7634 | 10년 전 | 1848 | ||
| 7633 | 10년 전 | 2310 | ||
| 7632 | 10년 전 | 3909 | ||
| 7631 |
|
10년 전 | 1515 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기