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

· 10년 전 · 1405

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


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,395
10년 전 조회 1,439
10년 전 조회 1,433
10년 전 조회 1,461
10년 전 조회 1,497
10년 전 조회 1,466
10년 전 조회 1,619
10년 전 조회 1,599
10년 전 조회 1,396
10년 전 조회 1,708
10년 전 조회 2,039
10년 전 조회 1,502
10년 전 조회 1,742
10년 전 조회 1,708
10년 전 조회 1,559
10년 전 조회 1,527
10년 전 조회 1,489
10년 전 조회 1,592
10년 전 조회 1,331
10년 전 조회 1,417
10년 전 조회 1,632
10년 전 조회 1,465
10년 전 조회 1,443
10년 전 조회 1,407
10년 전 조회 1,436
10년 전 조회 1,443
10년 전 조회 1,438
10년 전 조회 1,466
10년 전 조회 1,409
10년 전 조회 1,577
10년 전 조회 1,408
10년 전 조회 1,411
10년 전 조회 1,519
10년 전 조회 2,233
10년 전 조회 1,478
10년 전 조회 1,452
10년 전 조회 1,539
10년 전 조회 1,448
10년 전 조회 1,637
10년 전 조회 1,535
10년 전 조회 1,457
10년 전 조회 1,456
10년 전 조회 1,484
10년 전 조회 1,469
10년 전 조회 1,409
10년 전 조회 1,365
10년 전 조회 1,345
10년 전 조회 1,375
10년 전 조회 1,771
10년 전 조회 1,406
10년 전 조회 1,503
10년 전 조회 1,452
10년 전 조회 1,687
10년 전 조회 1,499
10년 전 조회 1,427
10년 전 조회 1,448
10년 전 조회 1,482
10년 전 조회 1,605
10년 전 조회 1,529
10년 전 조회 1,426
10년 전 조회 1,466
10년 전 조회 2,416
10년 전 조회 2,276
10년 전 조회 1,846
10년 전 조회 2,413
10년 전 조회 1,496
10년 전 조회 1,888
10년 전 조회 2,126
10년 전 조회 1,617
10년 전 조회 1,557
10년 전 조회 1,542
10년 전 조회 1,402
10년 전 조회 1,579
10년 전 조회 1,572
10년 전 조회 2,088
10년 전 조회 1,508
10년 전 조회 1,571
10년 전 조회 1,580
10년 전 조회 2,505
10년 전 조회 1,620
10년 전 조회 1,513
10년 전 조회 1,600
10년 전 조회 1,643
10년 전 조회 1,725
10년 전 조회 1,526
10년 전 조회 1,585
10년 전 조회 1,930
10년 전 조회 1,886
10년 전 조회 1,863
10년 전 조회 1,419
10년 전 조회 1,521
10년 전 조회 1,474
10년 전 조회 1,431
10년 전 조회 1,659
10년 전 조회 1,426
10년 전 조회 1,727
10년 전 조회 1,410
10년 전 조회 1,753
10년 전 조회 1,449
10년 전 조회 1,674