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

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


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,087
19년 전 조회 1,650
19년 전 조회 3,334
19년 전 조회 2,215
19년 전 조회 1,783
19년 전 조회 3,011
19년 전 조회 2,139
19년 전 조회 2,006
19년 전 조회 1,984
19년 전 조회 1,940
19년 전 조회 2,377
19년 전 조회 2,795
19년 전 조회 1,940
19년 전 조회 1,691
19년 전 조회 1,696
19년 전 조회 1,652
19년 전 조회 3,380
19년 전 조회 3,073
19년 전 조회 1,813
19년 전 조회 3,579
19년 전 조회 1,999
19년 전 조회 1,643
19년 전 조회 2,112
19년 전 조회 2,263
19년 전 조회 1,819
19년 전 조회 2,510
19년 전 조회 2,148
19년 전 조회 1,759
19년 전 조회 1,950
19년 전 조회 2,204
19년 전 조회 1,972
19년 전 조회 1,755
19년 전 조회 1,816
19년 전 조회 3,312
19년 전 조회 2,165
19년 전 조회 2,024
19년 전 조회 4,523
19년 전 조회 5,147
19년 전 조회 3,324
19년 전 조회 3,062
19년 전 조회 3,660
19년 전 조회 2,191
19년 전 조회 2,556
19년 전 조회 2,855
19년 전 조회 2,923
19년 전 조회 2,528
19년 전 조회 1,786
19년 전 조회 3,574
19년 전 조회 2,148
19년 전 조회 2,549
19년 전 조회 2,609
19년 전 조회 3,050
19년 전 조회 5,371
19년 전 조회 2,647
19년 전 조회 3,487
19년 전 조회 4,424
19년 전 조회 2,681
19년 전 조회 2,623
19년 전 조회 4,213
19년 전 조회 2,915
19년 전 조회 3,147
19년 전 조회 2,375
19년 전 조회 2,373
19년 전 조회 2,166
19년 전 조회 3,459
19년 전 조회 2,273
19년 전 조회 2,955
19년 전 조회 1,907
19년 전 조회 5,466
19년 전 조회 3,730
19년 전 조회 4,482
19년 전 조회 3,223
19년 전 조회 2,694
19년 전 조회 4,077
19년 전 조회 2,813
19년 전 조회 3,158
19년 전 조회 3,127
19년 전 조회 4,335
19년 전 조회 3,289
19년 전 조회 3,175
19년 전 조회 3,863
19년 전 조회 3,154
19년 전 조회 2,387
19년 전 조회 2,390
19년 전 조회 2,329
19년 전 조회 2,954
19년 전 조회 2,652
19년 전 조회 3,499
19년 전 조회 3,364
19년 전 조회 1,986
19년 전 조회 2,908
19년 전 조회 7,991
19년 전 조회 2,669
19년 전 조회 3,276
19년 전 조회 3,045
19년 전 조회 3,164
19년 전 조회 2,390
19년 전 조회 2,621
19년 전 조회 4,217
19년 전 조회 2,412