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

· 10년 전 · 1388

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


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,381
10년 전 조회 1,422
10년 전 조회 1,421
10년 전 조회 1,448
10년 전 조회 1,487
10년 전 조회 1,447
10년 전 조회 1,608
10년 전 조회 1,583
10년 전 조회 1,384
10년 전 조회 1,690
10년 전 조회 2,022
10년 전 조회 1,489
10년 전 조회 1,731
10년 전 조회 1,692
10년 전 조회 1,548
10년 전 조회 1,511
10년 전 조회 1,481
10년 전 조회 1,575
10년 전 조회 1,319
10년 전 조회 1,405
10년 전 조회 1,623
10년 전 조회 1,451
10년 전 조회 1,432
10년 전 조회 1,394
10년 전 조회 1,422
10년 전 조회 1,428
10년 전 조회 1,424
10년 전 조회 1,455
10년 전 조회 1,402
10년 전 조회 1,565
10년 전 조회 1,395
10년 전 조회 1,400
10년 전 조회 1,498
10년 전 조회 2,218
10년 전 조회 1,462
10년 전 조회 1,435
10년 전 조회 1,525
10년 전 조회 1,435
10년 전 조회 1,628
10년 전 조회 1,525
10년 전 조회 1,446
10년 전 조회 1,447
10년 전 조회 1,473
10년 전 조회 1,459
10년 전 조회 1,391
10년 전 조회 1,357
10년 전 조회 1,333
10년 전 조회 1,368
10년 전 조회 1,761
10년 전 조회 1,389
10년 전 조회 1,490
10년 전 조회 1,443
10년 전 조회 1,680
10년 전 조회 1,488
10년 전 조회 1,414
10년 전 조회 1,434
10년 전 조회 1,468
10년 전 조회 1,593
10년 전 조회 1,515
10년 전 조회 1,421
10년 전 조회 1,454
10년 전 조회 2,400
10년 전 조회 2,262
10년 전 조회 1,840
10년 전 조회 2,405
10년 전 조회 1,479
10년 전 조회 1,876
10년 전 조회 2,112
10년 전 조회 1,601
10년 전 조회 1,547
10년 전 조회 1,530
10년 전 조회 1,387
10년 전 조회 1,559
10년 전 조회 1,560
10년 전 조회 2,081
10년 전 조회 1,501
10년 전 조회 1,563
10년 전 조회 1,565
10년 전 조회 2,491
10년 전 조회 1,606
10년 전 조회 1,500
10년 전 조회 1,583
10년 전 조회 1,629
10년 전 조회 1,711
10년 전 조회 1,512
10년 전 조회 1,573
10년 전 조회 1,919
10년 전 조회 1,876
10년 전 조회 1,850
10년 전 조회 1,406
10년 전 조회 1,506
10년 전 조회 1,458
10년 전 조회 1,423
10년 전 조회 1,644
10년 전 조회 1,417
10년 전 조회 1,715
10년 전 조회 1,397
10년 전 조회 1,737
10년 전 조회 1,435
10년 전 조회 1,655