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

· 10년 전 · 1454

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


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,442
10년 전 조회 1,488
10년 전 조회 1,479
10년 전 조회 1,525
10년 전 조회 1,545
10년 전 조회 1,516
10년 전 조회 1,660
10년 전 조회 1,657
10년 전 조회 1,449
10년 전 조회 1,765
10년 전 조회 2,090
10년 전 조회 1,550
10년 전 조회 1,798
10년 전 조회 1,768
10년 전 조회 1,612
10년 전 조회 1,595
10년 전 조회 1,537
10년 전 조회 1,646
10년 전 조회 1,397
10년 전 조회 1,466
10년 전 조회 1,688
10년 전 조회 1,508
10년 전 조회 1,475
10년 전 조회 1,461
10년 전 조회 1,482
10년 전 조회 1,494
10년 전 조회 1,487
10년 전 조회 1,510
10년 전 조회 1,466
10년 전 조회 1,631
10년 전 조회 1,452
10년 전 조회 1,470
10년 전 조회 1,582
10년 전 조회 2,277
10년 전 조회 1,528
10년 전 조회 1,501
10년 전 조회 1,587
10년 전 조회 1,493
10년 전 조회 1,680
10년 전 조회 1,583
10년 전 조회 1,495
10년 전 조회 1,495
10년 전 조회 1,527
10년 전 조회 1,524
10년 전 조회 1,460
10년 전 조회 1,409
10년 전 조회 1,394
10년 전 조회 1,434
10년 전 조회 1,837
10년 전 조회 1,455
10년 전 조회 1,555
10년 전 조회 1,501
10년 전 조회 1,738
10년 전 조회 1,557
10년 전 조회 1,476
10년 전 조회 1,502
10년 전 조회 1,538
10년 전 조회 1,661
10년 전 조회 1,590
10년 전 조회 1,474
10년 전 조회 1,520
10년 전 조회 2,472
10년 전 조회 2,343
10년 전 조회 1,891
10년 전 조회 2,477
10년 전 조회 1,536
10년 전 조회 1,946
10년 전 조회 2,185
10년 전 조회 1,679
10년 전 조회 1,612
10년 전 조회 1,595
10년 전 조회 1,451
10년 전 조회 1,634
10년 전 조회 1,623
10년 전 조회 2,148
10년 전 조회 1,551
10년 전 조회 1,640
10년 전 조회 1,621
10년 전 조회 2,549
10년 전 조회 1,680
10년 전 조회 1,565
10년 전 조회 1,648
10년 전 조회 1,685
10년 전 조회 1,760
10년 전 조회 1,553
10년 전 조회 1,639
10년 전 조회 1,978
10년 전 조회 1,938
10년 전 조회 1,915
10년 전 조회 1,464
10년 전 조회 1,567
10년 전 조회 1,516
10년 전 조회 1,478
10년 전 조회 1,703
10년 전 조회 1,471
10년 전 조회 1,772
10년 전 조회 1,456
10년 전 조회 1,790
10년 전 조회 1,491
10년 전 조회 1,721