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

· 10년 전 · 1421

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


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,402
10년 전 조회 1,446
10년 전 조회 1,440
10년 전 조회 1,473
10년 전 조회 1,510
10년 전 조회 1,475
10년 전 조회 1,629
10년 전 조회 1,612
10년 전 조회 1,406
10년 전 조회 1,722
10년 전 조회 2,047
10년 전 조회 1,510
10년 전 조회 1,754
10년 전 조회 1,719
10년 전 조회 1,567
10년 전 조회 1,543
10년 전 조회 1,502
10년 전 조회 1,603
10년 전 조회 1,340
10년 전 조회 1,427
10년 전 조회 1,645
10년 전 조회 1,473
10년 전 조회 1,448
10년 전 조회 1,419
10년 전 조회 1,441
10년 전 조회 1,458
10년 전 조회 1,446
10년 전 조회 1,474
10년 전 조회 1,416
10년 전 조회 1,592
10년 전 조회 1,417
10년 전 조회 1,420
10년 전 조회 1,533
10년 전 조회 2,240
10년 전 조회 1,488
10년 전 조회 1,459
10년 전 조회 1,549
10년 전 조회 1,460
10년 전 조회 1,643
10년 전 조회 1,548
10년 전 조회 1,462
10년 전 조회 1,466
10년 전 조회 1,493
10년 전 조회 1,484
10년 전 조회 1,418
10년 전 조회 1,373
10년 전 조회 1,353
10년 전 조회 1,390
10년 전 조회 1,782
10년 전 조회 1,422
10년 전 조회 1,512
10년 전 조회 1,457
10년 전 조회 1,696
10년 전 조회 1,510
10년 전 조회 1,435
10년 전 조회 1,460
10년 전 조회 1,491
10년 전 조회 1,616
10년 전 조회 1,539
10년 전 조회 1,440
10년 전 조회 1,473
10년 전 조회 2,429
10년 전 조회 2,290
10년 전 조회 1,859
10년 전 조회 2,430
10년 전 조회 1,504
10년 전 조회 1,896
10년 전 조회 2,141
10년 전 조회 1,630
10년 전 조회 1,574
10년 전 조회 1,552
10년 전 조회 1,409
10년 전 조회 1,587
10년 전 조회 1,582
10년 전 조회 2,101
10년 전 조회 1,520
10년 전 조회 1,587
10년 전 조회 1,591
10년 전 조회 2,517
10년 전 조회 1,633
10년 전 조회 1,524
10년 전 조회 1,610
10년 전 조회 1,652
10년 전 조회 1,731
10년 전 조회 1,532
10년 전 조회 1,598
10년 전 조회 1,944
10년 전 조회 1,899
10년 전 조회 1,876
10년 전 조회 1,429
10년 전 조회 1,534
10년 전 조회 1,486
10년 전 조회 1,442
10년 전 조회 1,668
10년 전 조회 1,434
10년 전 조회 1,740
10년 전 조회 1,425
10년 전 조회 1,759
10년 전 조회 1,455
10년 전 조회 1,684