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

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


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,280
19년 전 조회 1,817
19년 전 조회 3,508
19년 전 조회 2,389
19년 전 조회 1,961
19년 전 조회 3,187
19년 전 조회 2,309
19년 전 조회 2,188
19년 전 조회 2,163
19년 전 조회 2,124
19년 전 조회 2,547
19년 전 조회 2,964
19년 전 조회 2,111
19년 전 조회 1,855
19년 전 조회 1,877
19년 전 조회 1,816
19년 전 조회 3,553
19년 전 조회 3,247
19년 전 조회 1,999
19년 전 조회 3,743
19년 전 조회 2,177
19년 전 조회 1,822
19년 전 조회 2,297
19년 전 조회 2,433
19년 전 조회 1,972
19년 전 조회 2,687
19년 전 조회 2,322
19년 전 조회 1,953
19년 전 조회 2,121
19년 전 조회 2,374
19년 전 조회 2,122
19년 전 조회 1,933
19년 전 조회 1,994
19년 전 조회 3,470
19년 전 조회 2,350
19년 전 조회 2,200
19년 전 조회 4,707
19년 전 조회 5,322
19년 전 조회 3,487
19년 전 조회 3,226
19년 전 조회 3,833
19년 전 조회 2,368
19년 전 조회 2,726
19년 전 조회 3,025
19년 전 조회 3,101
19년 전 조회 2,697
19년 전 조회 1,958
19년 전 조회 3,740
19년 전 조회 2,325
19년 전 조회 2,730
19년 전 조회 2,806
19년 전 조회 3,217
19년 전 조회 5,535
19년 전 조회 2,825
19년 전 조회 3,664
19년 전 조회 4,618
19년 전 조회 2,866
19년 전 조회 2,803
19년 전 조회 4,386
19년 전 조회 3,091
19년 전 조회 3,336
19년 전 조회 2,532
19년 전 조회 2,558
19년 전 조회 2,351
19년 전 조회 3,632
19년 전 조회 2,464
19년 전 조회 3,143
19년 전 조회 2,069
19년 전 조회 5,655
19년 전 조회 3,918
19년 전 조회 4,664
19년 전 조회 3,401
19년 전 조회 2,871
19년 전 조회 4,264
19년 전 조회 3,004
19년 전 조회 3,345
19년 전 조회 3,300
19년 전 조회 4,510
19년 전 조회 3,464
19년 전 조회 3,351
19년 전 조회 4,033
19년 전 조회 3,330
19년 전 조회 2,576
19년 전 조회 2,571
19년 전 조회 2,522
19년 전 조회 3,140
19년 전 조회 2,848
19년 전 조회 3,701
19년 전 조회 3,538
19년 전 조회 2,169
19년 전 조회 3,096
19년 전 조회 8,184
19년 전 조회 2,862
19년 전 조회 3,486
19년 전 조회 3,210
19년 전 조회 3,354
19년 전 조회 2,565
19년 전 조회 2,807
19년 전 조회 4,409
19년 전 조회 2,574