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

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


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,179
19년 전 조회 1,722
19년 전 조회 3,416
19년 전 조회 2,297
19년 전 조회 1,869
19년 전 조회 3,091
19년 전 조회 2,220
19년 전 조회 2,091
19년 전 조회 2,062
19년 전 조회 2,027
19년 전 조회 2,452
19년 전 조회 2,870
19년 전 조회 2,023
19년 전 조회 1,767
19년 전 조회 1,776
19년 전 조회 1,732
19년 전 조회 3,454
19년 전 조회 3,159
19년 전 조회 1,900
19년 전 조회 3,654
19년 전 조회 2,076
19년 전 조회 1,738
19년 전 조회 2,190
19년 전 조회 2,336
19년 전 조회 1,897
19년 전 조회 2,583
19년 전 조회 2,226
19년 전 조회 1,835
19년 전 조회 2,024
19년 전 조회 2,285
19년 전 조회 2,048
19년 전 조회 1,828
19년 전 조회 1,893
19년 전 조회 3,388
19년 전 조회 2,246
19년 전 조회 2,107
19년 전 조회 4,602
19년 전 조회 5,223
19년 전 조회 3,398
19년 전 조회 3,136
19년 전 조회 3,735
19년 전 조회 2,269
19년 전 조회 2,633
19년 전 조회 2,935
19년 전 조회 3,003
19년 전 조회 2,598
19년 전 조회 1,864
19년 전 조회 3,642
19년 전 조회 2,228
19년 전 조회 2,626
19년 전 조회 2,693
19년 전 조회 3,126
19년 전 조회 5,447
19년 전 조회 2,728
19년 전 조회 3,554
19년 전 조회 4,497
19년 전 조회 2,758
19년 전 조회 2,693
19년 전 조회 4,282
19년 전 조회 2,980
19년 전 조회 3,226
19년 전 조회 2,434
19년 전 조회 2,448
19년 전 조회 2,232
19년 전 조회 3,534
19년 전 조회 2,348
19년 전 조회 3,036
19년 전 조회 1,975
19년 전 조회 5,537
19년 전 조회 3,801
19년 전 조회 4,549
19년 전 조회 3,291
19년 전 조회 2,769
19년 전 조회 4,159
19년 전 조회 2,882
19년 전 조회 3,222
19년 전 조회 3,194
19년 전 조회 4,412
19년 전 조회 3,350
19년 전 조회 3,244
19년 전 조회 3,934
19년 전 조회 3,219
19년 전 조회 2,454
19년 전 조회 2,461
19년 전 조회 2,402
19년 전 조회 3,024
19년 전 조회 2,727
19년 전 조회 3,580
19년 전 조회 3,437
19년 전 조회 2,047
19년 전 조회 2,977
19년 전 조회 8,062
19년 전 조회 2,740
19년 전 조회 3,355
19년 전 조회 3,104
19년 전 조회 3,221
19년 전 조회 2,464
19년 전 조회 2,691
19년 전 조회 4,295
19년 전 조회 2,474