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

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


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,094
19년 전 조회 1,655
19년 전 조회 3,338
19년 전 조회 2,221
19년 전 조회 1,786
19년 전 조회 3,015
19년 전 조회 2,145
19년 전 조회 2,013
19년 전 조회 1,990
19년 전 조회 1,946
19년 전 조회 2,380
19년 전 조회 2,802
19년 전 조회 1,948
19년 전 조회 1,697
19년 전 조회 1,703
19년 전 조회 1,661
19년 전 조회 3,388
19년 전 조회 3,078
19년 전 조회 1,824
19년 전 조회 3,582
19년 전 조회 2,003
19년 전 조회 1,647
19년 전 조회 2,117
19년 전 조회 2,272
19년 전 조회 1,826
19년 전 조회 2,514
19년 전 조회 2,154
19년 전 조회 1,765
19년 전 조회 1,955
19년 전 조회 2,209
19년 전 조회 1,976
19년 전 조회 1,761
19년 전 조회 1,823
19년 전 조회 3,320
19년 전 조회 2,175
19년 전 조회 2,029
19년 전 조회 4,527
19년 전 조회 5,152
19년 전 조회 3,331
19년 전 조회 3,066
19년 전 조회 3,663
19년 전 조회 2,198
19년 전 조회 2,562
19년 전 조회 2,861
19년 전 조회 2,927
19년 전 조회 2,534
19년 전 조회 1,796
19년 전 조회 3,581
19년 전 조회 2,156
19년 전 조회 2,553
19년 전 조회 2,622
19년 전 조회 3,054
19년 전 조회 5,375
19년 전 조회 2,654
19년 전 조회 3,494
19년 전 조회 4,430
19년 전 조회 2,690
19년 전 조회 2,625
19년 전 조회 4,220
19년 전 조회 2,922
19년 전 조회 3,152
19년 전 조회 2,379
19년 전 조회 2,380
19년 전 조회 2,172
19년 전 조회 3,465
19년 전 조회 2,277
19년 전 조회 2,962
19년 전 조회 1,917
19년 전 조회 5,472
19년 전 조회 3,740
19년 전 조회 4,488
19년 전 조회 3,231
19년 전 조회 2,694
19년 전 조회 4,085
19년 전 조회 2,815
19년 전 조회 3,161
19년 전 조회 3,131
19년 전 조회 4,340
19년 전 조회 3,296
19년 전 조회 3,185
19년 전 조회 3,870
19년 전 조회 3,161
19년 전 조회 2,393
19년 전 조회 2,394
19년 전 조회 2,334
19년 전 조회 2,960
19년 전 조회 2,657
19년 전 조회 3,503
19년 전 조회 3,372
19년 전 조회 1,989
19년 전 조회 2,920
19년 전 조회 7,997
19년 전 조회 2,677
19년 전 조회 3,281
19년 전 조회 3,051
19년 전 조회 3,169
19년 전 조회 2,398
19년 전 조회 2,626
19년 전 조회 4,219
19년 전 조회 2,418