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

· 10년 전 · 1433

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


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,415
10년 전 조회 1,459
10년 전 조회 1,455
10년 전 조회 1,489
10년 전 조회 1,518
10년 전 조회 1,491
10년 전 조회 1,639
10년 전 조회 1,623
10년 전 조회 1,423
10년 전 조회 1,737
10년 전 조회 2,055
10년 전 조회 1,525
10년 전 조회 1,770
10년 전 조회 1,739
10년 전 조회 1,579
10년 전 조회 1,561
10년 전 조회 1,514
10년 전 조회 1,617
10년 전 조회 1,366
10년 전 조회 1,439
10년 전 조회 1,661
10년 전 조회 1,485
10년 전 조회 1,457
10년 전 조회 1,427
10년 전 조회 1,455
10년 전 조회 1,475
10년 전 조회 1,459
10년 전 조회 1,484
10년 전 조회 1,430
10년 전 조회 1,603
10년 전 조회 1,432
10년 전 조회 1,439
10년 전 조회 1,544
10년 전 조회 2,257
10년 전 조회 1,506
10년 전 조회 1,472
10년 전 조회 1,561
10년 전 조회 1,474
10년 전 조회 1,655
10년 전 조회 1,561
10년 전 조회 1,481
10년 전 조회 1,473
10년 전 조회 1,505
10년 전 조회 1,495
10년 전 조회 1,434
10년 전 조회 1,384
10년 전 조회 1,362
10년 전 조회 1,405
10년 전 조회 1,794
10년 전 조회 1,434
10년 전 조회 1,528
10년 전 조회 1,473
10년 전 조회 1,712
10년 전 조회 1,524
10년 전 조회 1,449
10년 전 조회 1,477
10년 전 조회 1,508
10년 전 조회 1,632
10년 전 조회 1,550
10년 전 조회 1,451
10년 전 조회 1,492
10년 전 조회 2,441
10년 전 조회 2,309
10년 전 조회 1,868
10년 전 조회 2,443
10년 전 조회 1,517
10년 전 조회 1,914
10년 전 조회 2,153
10년 전 조회 1,649
10년 전 조회 1,587
10년 전 조회 1,562
10년 전 조회 1,424
10년 전 조회 1,602
10년 전 조회 1,597
10년 전 조회 2,117
10년 전 조회 1,528
10년 전 조회 1,600
10년 전 조회 1,601
10년 전 조회 2,526
10년 전 조회 1,659
10년 전 조회 1,543
10년 전 조회 1,626
10년 전 조회 1,667
10년 전 조회 1,739
10년 전 조회 1,537
10년 전 조회 1,614
10년 전 조회 1,961
10년 전 조회 1,914
10년 전 조회 1,891
10년 전 조회 1,441
10년 전 조회 1,547
10년 전 조회 1,497
10년 전 조회 1,459
10년 전 조회 1,685
10년 전 조회 1,451
10년 전 조회 1,750
10년 전 조회 1,442
10년 전 조회 1,775
10년 전 조회 1,470
10년 전 조회 1,699