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

· 10년 전 · 1222

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


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;
}  

|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
10년 전 조회 1,241
10년 전 조회 1,277
10년 전 조회 1,275
10년 전 조회 1,307
10년 전 조회 1,329
10년 전 조회 1,300
10년 전 조회 1,449
10년 전 조회 1,446
10년 전 조회 1,232
10년 전 조회 1,540
10년 전 조회 1,898
10년 전 조회 1,335
10년 전 조회 1,589
10년 전 조회 1,549
10년 전 조회 1,393
10년 전 조회 1,363
10년 전 조회 1,318
10년 전 조회 1,432
10년 전 조회 1,169
10년 전 조회 1,253
10년 전 조회 1,460
10년 전 조회 1,286
10년 전 조회 1,286
10년 전 조회 1,248
10년 전 조회 1,271
10년 전 조회 1,254
10년 전 조회 1,245
10년 전 조회 1,276
10년 전 조회 1,245
10년 전 조회 1,402
10년 전 조회 1,233
10년 전 조회 1,232
10년 전 조회 1,313
10년 전 조회 2,051
10년 전 조회 1,286
10년 전 조회 1,277
10년 전 조회 1,371
10년 전 조회 1,274
10년 전 조회 1,422
10년 전 조회 1,361
10년 전 조회 1,269
10년 전 조회 1,278
10년 전 조회 1,323
10년 전 조회 1,306
10년 전 조회 1,226
10년 전 조회 1,180
10년 전 조회 1,153
10년 전 조회 1,187
10년 전 조회 1,580
10년 전 조회 1,223
10년 전 조회 1,330
10년 전 조회 1,286
10년 전 조회 1,492
10년 전 조회 1,318
10년 전 조회 1,253
10년 전 조회 1,266
10년 전 조회 1,303
10년 전 조회 1,427
10년 전 조회 1,351
10년 전 조회 1,258
10년 전 조회 1,292
10년 전 조회 2,222
10년 전 조회 2,101
10년 전 조회 1,668
10년 전 조회 2,232
10년 전 조회 1,280
10년 전 조회 1,734
10년 전 조회 1,950
10년 전 조회 1,428
10년 전 조회 1,407
10년 전 조회 1,365
10년 전 조회 1,231
10년 전 조회 1,407
10년 전 조회 1,401
10년 전 조회 1,918
10년 전 조회 1,342
10년 전 조회 1,386
10년 전 조회 1,422
10년 전 조회 2,307
10년 전 조회 1,463
10년 전 조회 1,347
10년 전 조회 1,424
10년 전 조회 1,475
10년 전 조회 1,554
10년 전 조회 1,355
10년 전 조회 1,414
10년 전 조회 1,755
10년 전 조회 1,711
10년 전 조회 1,679
10년 전 조회 1,227
10년 전 조회 1,360
10년 전 조회 1,313
10년 전 조회 1,255
10년 전 조회 1,484
10년 전 조회 1,257
10년 전 조회 1,557
10년 전 조회 1,243
10년 전 조회 1,549
10년 전 조회 1,244
10년 전 조회 1,511