안

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

· 2006-11-30 (목) 21:47:38 · 2431
파일이름의 확장자로 파일 종류를 확인하는 함수입니다.
미디어스킨 또는 이미지 관련스킨에 유용할듯해서 올립니다.


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>
|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

6,077건

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
06-12-12 조회 4,962
06-12-11 조회 3,201
06-12-10 조회 2,933
06-12-07 조회 3,537
06-12-07 조회 2,084
06-12-07 조회 2,441
06-12-07 조회 2,743
06-12-07 조회 2,808
06-12-07 조회 2,395
06-12-04 조회 1,662
06-12-04 조회 3,432
06-11-30 조회 2,029
06-11-30 조회 2,432
06-11-30 조회 2,493
06-11-28 조회 2,926
06-11-28 조회 5,251
06-11-27 조회 2,541
06-11-27 조회 3,383
06-11-27 조회 4,316
06-11-25 조회 2,552
06-11-24 조회 2,507
06-11-22 조회 4,085
06-11-21 조회 2,793
06-11-18 조회 3,037
06-11-15 조회 2,249