파일이름의 확장자로 파일 종류를 확인하는 함수

· 19년 전 · 2746
파일이름의 확장자로 파일 종류를 확인하는 함수입니다.
미디어스킨 또는 이미지 관련스킨에 유용할듯해서 올립니다.


function file_type($filename)
{
$tmp = explode(".", $filename);
$ext = trim($tmp[count($tmp)-1]);

$type_image = "jpg|jpeg|gif|bmp|pcx|png";
$type_compress = "zip|alz|gz|tar|z|rar|ace|bz|bz2";
$type_text = "txt|text|rtf|2b";
$type_html = "htm|html";
$type_hwp = "hwp|h30";
$type_exe = "exe";
$type_font = "ttf";
$type_movie = "avi|mpg|mpeg|mqv|asf|wmv|mov";
$type_sound = "wav|mp3|mid|wma";

if(preg_match("/($type_image)/i",$ext))
$file_type = 'image';
else if(preg_match("/($type_compress)/i",$ext))
$file_type = 'compress';
else if(preg_match("/($type_text)/i",$ext))
$file_type = 'text';
else if(preg_match("/($type_html)/i",$ext))
$file_type = 'html';
else if(preg_match("/($type_hwp)/i",$ext))
$file_type = 'hwp';
else if(preg_match("/($type_exe)/i",$ext))
$file_type = 'exe';
else if(preg_match("/($type_font)/i",$ext))
$file_type = 'font';
else if(preg_match("/($type_movie)/i",$ext))
$file_type = 'movie';
else if(preg_match("/($type_sound)/i",$ext))
$file_type = 'sound';
else
$file_type = 'unknown';

return $file_type;
}




// phpschool에서 펌<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
19년 전 조회 2,302
19년 전 조회 1,835
19년 전 조회 3,523
19년 전 조회 2,413
19년 전 조회 1,986
19년 전 조회 3,204
19년 전 조회 2,330
19년 전 조회 2,203
19년 전 조회 2,175
19년 전 조회 2,137
19년 전 조회 2,565
19년 전 조회 2,978
19년 전 조회 2,129
19년 전 조회 1,871
19년 전 조회 1,897
19년 전 조회 1,837
19년 전 조회 3,569
19년 전 조회 3,271
19년 전 조회 2,024
19년 전 조회 3,761
19년 전 조회 2,195
19년 전 조회 1,839
19년 전 조회 2,324
19년 전 조회 2,451
19년 전 조회 1,988
19년 전 조회 2,705
19년 전 조회 2,342
19년 전 조회 1,965
19년 전 조회 2,132
19년 전 조회 2,384
19년 전 조회 2,132
19년 전 조회 1,946
19년 전 조회 2,015
19년 전 조회 3,486
19년 전 조회 2,364
19년 전 조회 2,214
19년 전 조회 4,726
19년 전 조회 5,349
19년 전 조회 3,503
19년 전 조회 3,239
19년 전 조회 3,854
19년 전 조회 2,393
19년 전 조회 2,739
19년 전 조회 3,035
19년 전 조회 3,123
19년 전 조회 2,706
19년 전 조회 1,973
19년 전 조회 3,754
19년 전 조회 2,336
19년 전 조회 2,747
19년 전 조회 2,815
19년 전 조회 3,230
19년 전 조회 5,545
19년 전 조회 2,841
19년 전 조회 3,675
19년 전 조회 4,635
19년 전 조회 2,881
19년 전 조회 2,817
19년 전 조회 4,399
19년 전 조회 3,107
19년 전 조회 3,355
19년 전 조회 2,552
19년 전 조회 2,568
19년 전 조회 2,362
19년 전 조회 3,651
19년 전 조회 2,478
19년 전 조회 3,158
19년 전 조회 2,083
19년 전 조회 5,661
19년 전 조회 3,931
19년 전 조회 4,680
19년 전 조회 3,423
19년 전 조회 2,880
19년 전 조회 4,279
19년 전 조회 3,018
19년 전 조회 3,362
19년 전 조회 3,316
19년 전 조회 4,526
19년 전 조회 3,481
19년 전 조회 3,366
19년 전 조회 4,050
19년 전 조회 3,345
19년 전 조회 2,585
19년 전 조회 2,585
19년 전 조회 2,543
19년 전 조회 3,153
19년 전 조회 2,867
19년 전 조회 3,711
19년 전 조회 3,555
19년 전 조회 2,189
19년 전 조회 3,107
19년 전 조회 8,197
19년 전 조회 2,877
19년 전 조회 3,502
19년 전 조회 3,224
19년 전 조회 3,367
19년 전 조회 2,579
19년 전 조회 2,825
19년 전 조회 4,428
19년 전 조회 2,595