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

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


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,330
19년 전 조회 1,863
19년 전 조회 3,548
19년 전 조회 2,439
19년 전 조회 2,000
19년 전 조회 3,239
19년 전 조회 2,354
19년 전 조회 2,226
19년 전 조회 2,203
19년 전 조회 2,164
19년 전 조회 2,590
19년 전 조회 3,006
19년 전 조회 2,156
19년 전 조회 1,893
19년 전 조회 1,924
19년 전 조회 1,856
19년 전 조회 3,596
19년 전 조회 3,300
19년 전 조회 2,047
19년 전 조회 3,787
19년 전 조회 2,216
19년 전 조회 1,859
19년 전 조회 2,343
19년 전 조회 2,477
19년 전 조회 2,015
19년 전 조회 2,728
19년 전 조회 2,372
19년 전 조회 1,989
19년 전 조회 2,151
19년 전 조회 2,414
19년 전 조회 2,154
19년 전 조회 1,967
19년 전 조회 2,042
19년 전 조회 3,512
19년 전 조회 2,382
19년 전 조회 2,237
19년 전 조회 4,742
19년 전 조회 5,373
19년 전 조회 3,521
19년 전 조회 3,259
19년 전 조회 3,877
19년 전 조회 2,415
19년 전 조회 2,760
19년 전 조회 3,067
19년 전 조회 3,140
19년 전 조회 2,722
19년 전 조회 1,987
19년 전 조회 3,771
19년 전 조회 2,357
19년 전 조회 2,763
19년 전 조회 2,838
19년 전 조회 3,248
19년 전 조회 5,562
19년 전 조회 2,857
19년 전 조회 3,692
19년 전 조회 4,650
19년 전 조회 2,894
19년 전 조회 2,840
19년 전 조회 4,410
19년 전 조회 3,123
19년 전 조회 3,378
19년 전 조회 2,567
19년 전 조회 2,587
19년 전 조회 2,377
19년 전 조회 3,666
19년 전 조회 2,503
19년 전 조회 3,177
19년 전 조회 2,102
19년 전 조회 5,677
19년 전 조회 3,949
19년 전 조회 4,696
19년 전 조회 3,443
19년 전 조회 2,899
19년 전 조회 4,293
19년 전 조회 3,036
19년 전 조회 3,379
19년 전 조회 3,332
19년 전 조회 4,547
19년 전 조회 3,500
19년 전 조회 3,382
19년 전 조회 4,069
19년 전 조회 3,362
19년 전 조회 2,604
19년 전 조회 2,602
19년 전 조회 2,552
19년 전 조회 3,170
19년 전 조회 2,885
19년 전 조회 3,727
19년 전 조회 3,576
19년 전 조회 2,205
19년 전 조회 3,125
19년 전 조회 8,212
19년 전 조회 2,894
19년 전 조회 3,518
19년 전 조회 3,240
19년 전 조회 3,381
19년 전 조회 2,600
19년 전 조회 2,840
19년 전 조회 4,449
19년 전 조회 2,609