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

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


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,171
19년 전 조회 1,717
19년 전 조회 3,409
19년 전 조회 2,287
19년 전 조회 1,860
19년 전 조회 3,079
19년 전 조회 2,211
19년 전 조회 2,084
19년 전 조회 2,053
19년 전 조회 2,019
19년 전 조회 2,439
19년 전 조회 2,862
19년 전 조회 2,016
19년 전 조회 1,759
19년 전 조회 1,765
19년 전 조회 1,723
19년 전 조회 3,446
19년 전 조회 3,150
19년 전 조회 1,887
19년 전 조회 3,648
19년 전 조회 2,069
19년 전 조회 1,725
19년 전 조회 2,183
19년 전 조회 2,332
19년 전 조회 1,891
19년 전 조회 2,575
19년 전 조회 2,219
19년 전 조회 1,826
19년 전 조회 2,018
19년 전 조회 2,282
19년 전 조회 2,035
19년 전 조회 1,823
19년 전 조회 1,889
19년 전 조회 3,381
19년 전 조회 2,240
19년 전 조회 2,100
19년 전 조회 4,593
19년 전 조회 5,216
19년 전 조회 3,389
19년 전 조회 3,129
19년 전 조회 3,722
19년 전 조회 2,266
19년 전 조회 2,624
19년 전 조회 2,929
19년 전 조회 2,994
19년 전 조회 2,593
19년 전 조회 1,861
19년 전 조회 3,639
19년 전 조회 2,221
19년 전 조회 2,621
19년 전 조회 2,690
19년 전 조회 3,120
19년 전 조회 5,443
19년 전 조회 2,723
19년 전 조회 3,551
19년 전 조회 4,486
19년 전 조회 2,753
19년 전 조회 2,689
19년 전 조회 4,277
19년 전 조회 2,977
19년 전 조회 3,221
19년 전 조회 2,433
19년 전 조회 2,439
19년 전 조회 2,229
19년 전 조회 3,529
19년 전 조회 2,342
19년 전 조회 3,028
19년 전 조회 1,967
19년 전 조회 5,533
19년 전 조회 3,795
19년 전 조회 4,546
19년 전 조회 3,289
19년 전 조회 2,766
19년 전 조회 4,158
19년 전 조회 2,878
19년 전 조회 3,218
19년 전 조회 3,190
19년 전 조회 4,409
19년 전 조회 3,345
19년 전 조회 3,238
19년 전 조회 3,930
19년 전 조회 3,218
19년 전 조회 2,449
19년 전 조회 2,458
19년 전 조회 2,399
19년 전 조회 3,017
19년 전 조회 2,722
19년 전 조회 3,575
19년 전 조회 3,434
19년 전 조회 2,043
19년 전 조회 2,972
19년 전 조회 8,057
19년 전 조회 2,734
19년 전 조회 3,350
19년 전 조회 3,102
19년 전 조회 3,211
19년 전 조회 2,463
19년 전 조회 2,687
19년 전 조회 4,290
19년 전 조회 2,471