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

· 10년 전 · 1365

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


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,359
10년 전 조회 1,402
10년 전 조회 1,391
10년 전 조회 1,419
10년 전 조회 1,457
10년 전 조회 1,428
10년 전 조회 1,578
10년 전 조회 1,566
10년 전 조회 1,359
10년 전 조회 1,668
10년 전 조회 2,008
10년 전 조회 1,463
10년 전 조회 1,708
10년 전 조회 1,671
10년 전 조회 1,533
10년 전 조회 1,488
10년 전 조회 1,451
10년 전 조회 1,557
10년 전 조회 1,295
10년 전 조회 1,383
10년 전 조회 1,604
10년 전 조회 1,428
10년 전 조회 1,413
10년 전 조회 1,368
10년 전 조회 1,406
10년 전 조회 1,400
10년 전 조회 1,402
10년 전 조회 1,429
10년 전 조회 1,381
10년 전 조회 1,542
10년 전 조회 1,366
10년 전 조회 1,377
10년 전 조회 1,477
10년 전 조회 2,201
10년 전 조회 1,435
10년 전 조회 1,418
10년 전 조회 1,501
10년 전 조회 1,409
10년 전 조회 1,608
10년 전 조회 1,499
10년 전 조회 1,421
10년 전 조회 1,428
10년 전 조회 1,458
10년 전 조회 1,443
10년 전 조회 1,372
10년 전 조회 1,335
10년 전 조회 1,312
10년 전 조회 1,349
10년 전 조회 1,739
10년 전 조회 1,366
10년 전 조회 1,470
10년 전 조회 1,428
10년 전 조회 1,658
10년 전 조회 1,463
10년 전 조회 1,393
10년 전 조회 1,409
10년 전 조회 1,448
10년 전 조회 1,568
10년 전 조회 1,498
10년 전 조회 1,403
10년 전 조회 1,435
10년 전 조회 2,377
10년 전 조회 2,242
10년 전 조회 1,823
10년 전 조회 2,388
10년 전 조회 1,458
10년 전 조회 1,856
10년 전 조회 2,096
10년 전 조회 1,576
10년 전 조회 1,531
10년 전 조회 1,509
10년 전 조회 1,363
10년 전 조회 1,540
10년 전 조회 1,546
10년 전 조회 2,059
10년 전 조회 1,488
10년 전 조회 1,542
10년 전 조회 1,552
10년 전 조회 2,468
10년 전 조회 1,592
10년 전 조회 1,483
10년 전 조회 1,567
10년 전 조회 1,607
10년 전 조회 1,697
10년 전 조회 1,492
10년 전 조회 1,545
10년 전 조회 1,893
10년 전 조회 1,846
10년 전 조회 1,827
10년 전 조회 1,389
10년 전 조회 1,484
10년 전 조회 1,442
10년 전 조회 1,403
10년 전 조회 1,629
10년 전 조회 1,402
10년 전 조회 1,696
10년 전 조회 1,380
10년 전 조회 1,717
10년 전 조회 1,410
10년 전 조회 1,636