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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 830 |
|
19년 전 | 2190 | |
| 829 |
|
19년 전 | 1925 | |
| 828 |
|
19년 전 | 1811 | |
| 827 |
|
19년 전 | 1656 | |
| 826 |
|
19년 전 | 1850 | |
| 825 |
|
19년 전 | 1897 | |
| 824 |
|
19년 전 | 1954 | |
| 823 |
|
19년 전 | 2691 | |
| 822 |
|
19년 전 | 5327 | |
| 821 |
|
19년 전 | 1725 | |
| 820 |
|
19년 전 | 1578 | |
| 819 |
|
19년 전 | 1444 | |
| 818 |
|
19년 전 | 1609 | |
| 817 |
|
19년 전 | 1526 | |
| 816 |
|
19년 전 | 1449 | |
| 815 |
|
19년 전 | 1461 | |
| 814 |
|
19년 전 | 1384 | |
| 813 |
|
19년 전 | 1451 | |
| 812 | 19년 전 | 2822 | ||
| 811 |
pearly
|
19년 전 | 3839 | |
| 810 |
pearly
|
19년 전 | 5219 | |
| 809 |
|
19년 전 | 1381 | |
| 808 |
pearly
|
19년 전 | 4544 | |
| 807 | 19년 전 | 2983 | ||
| 806 |
|
19년 전 | 1504 | |
| 805 |
|
19년 전 | 2694 | |
| 804 |
|
19년 전 | 3620 | |
| 803 |
|
19년 전 | 1813 | |
| 802 |
|
19년 전 | 3791 | |
| 801 |
|
19년 전 | 1883 | |
| 800 | 19년 전 | 3771 | ||
| 799 | 19년 전 | 3437 | ||
| 798 | 19년 전 | 4209 | ||
| 797 | 19년 전 | 4069 | ||
| 796 |
|
19년 전 | 1898 | |
| 795 |
|
19년 전 | 1856 | |
| 794 | 19년 전 | 4279 | ||
| 793 | 19년 전 | 2671 | ||
| 792 | 19년 전 | 2551 | ||
| 791 | 19년 전 | 2401 | ||
| 790 | 19년 전 | 1981 | ||
| 789 | 19년 전 | 2594 | ||
| 788 | 19년 전 | 2210 | ||
| 787 | 19년 전 | 1848 | ||
| 786 | 19년 전 | 1977 | ||
| 785 | 19년 전 | 1444 | ||
| 784 |
|
19년 전 | 1699 | |
| 783 | 19년 전 | 2842 | ||
| 782 |
|
19년 전 | 1962 | |
| 781 | 19년 전 | 3248 | ||
| 780 | 19년 전 | 3160 | ||
| 779 |
|
19년 전 | 2247 | |
| 778 |
|
19년 전 | 1803 | |
| 777 | 19년 전 | 2843 | ||
| 776 | 19년 전 | 2909 | ||
| 775 | 19년 전 | 4021 | ||
| 774 |
|
19년 전 | 1983 | |
| 773 | 19년 전 | 2624 | ||
| 772 | 19년 전 | 2343 | ||
| 771 | 19년 전 | 3474 | ||
| 770 |
|
19년 전 | 1439 | |
| 769 | 19년 전 | 1501 | ||
| 768 | 19년 전 | 1773 | ||
| 767 | 19년 전 | 2204 | ||
| 766 | 19년 전 | 1836 | ||
| 765 | 19년 전 | 1696 | ||
| 764 |
|
19년 전 | 2115 | |
| 763 |
|
19년 전 | 2222 | |
| 762 |
|
19년 전 | 4964 | |
| 761 | 19년 전 | 2330 | ||
| 760 |
|
19년 전 | 3195 | |
| 759 | 19년 전 | 2645 | ||
| 758 |
|
19년 전 | 2407 | |
| 757 | 19년 전 | 4705 | ||
| 756 | 19년 전 | 2572 | ||
| 755 |
|
19년 전 | 2418 | |
| 754 |
|
19년 전 | 1960 | |
| 753 |
|
19년 전 | 1743 | |
| 752 |
pearly
|
19년 전 | 3371 | |
| 751 | 19년 전 | 2349 | ||
| 750 |
|
19년 전 | 6164 | |
| 749 | 19년 전 | 2035 | ||
| 748 |
|
19년 전 | 1906 | |
| 747 |
|
19년 전 | 2708 | |
| 746 |
|
19년 전 | 1819 | |
| 745 | 19년 전 | 2282 | ||
| 744 | 19년 전 | 2115 | ||
| 743 |
|
19년 전 | 3571 | |
| 742 | 19년 전 | 2583 | ||
| 741 | 19년 전 | 2749 | ||
| 740 |
|
19년 전 | 4372 | |
| 739 | 19년 전 | 3548 | ||
| 738 |
|
19년 전 | 2309 | |
| 737 | 19년 전 | 4317 | ||
| 736 | 19년 전 | 3271 | ||
| 735 |
홀로남은자
|
19년 전 | 4144 | |
| 734 |
홀로남은자
|
19년 전 | 2030 | |
| 733 |
홀로남은자
|
19년 전 | 2231 | |
| 732 | 19년 전 | 2139 | ||
| 731 | 19년 전 | 3357 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기