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

· 10년 전 · 1354

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


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,356
10년 전 조회 1,390
10년 전 조회 1,383
10년 전 조회 1,414
10년 전 조회 1,452
10년 전 조회 1,420
10년 전 조회 1,574
10년 전 조회 1,560
10년 전 조회 1,351
10년 전 조회 1,660
10년 전 조회 2,001
10년 전 조회 1,459
10년 전 조회 1,704
10년 전 조회 1,665
10년 전 조회 1,527
10년 전 조회 1,476
10년 전 조회 1,441
10년 전 조회 1,550
10년 전 조회 1,285
10년 전 조회 1,376
10년 전 조회 1,598
10년 전 조회 1,421
10년 전 조회 1,408
10년 전 조회 1,360
10년 전 조회 1,400
10년 전 조회 1,388
10년 전 조회 1,392
10년 전 조회 1,421
10년 전 조회 1,372
10년 전 조회 1,535
10년 전 조회 1,358
10년 전 조회 1,371
10년 전 조회 1,467
10년 전 조회 2,193
10년 전 조회 1,425
10년 전 조회 1,413
10년 전 조회 1,494
10년 전 조회 1,402
10년 전 조회 1,598
10년 전 조회 1,494
10년 전 조회 1,414
10년 전 조회 1,417
10년 전 조회 1,453
10년 전 조회 1,437
10년 전 조회 1,361
10년 전 조회 1,320
10년 전 조회 1,302
10년 전 조회 1,334
10년 전 조회 1,731
10년 전 조회 1,355
10년 전 조회 1,466
10년 전 조회 1,417
10년 전 조회 1,653
10년 전 조회 1,455
10년 전 조회 1,390
10년 전 조회 1,402
10년 전 조회 1,442
10년 전 조회 1,557
10년 전 조회 1,494
10년 전 조회 1,391
10년 전 조회 1,429
10년 전 조회 2,373
10년 전 조회 2,231
10년 전 조회 1,819
10년 전 조회 2,376
10년 전 조회 1,448
10년 전 조회 1,850
10년 전 조회 2,090
10년 전 조회 1,569
10년 전 조회 1,523
10년 전 조회 1,497
10년 전 조회 1,352
10년 전 조회 1,536
10년 전 조회 1,542
10년 전 조회 2,051
10년 전 조회 1,483
10년 전 조회 1,535
10년 전 조회 1,548
10년 전 조회 2,463
10년 전 조회 1,584
10년 전 조회 1,473
10년 전 조회 1,560
10년 전 조회 1,603
10년 전 조회 1,692
10년 전 조회 1,480
10년 전 조회 1,536
10년 전 조회 1,883
10년 전 조회 1,837
10년 전 조회 1,818
10년 전 조회 1,379
10년 전 조회 1,480
10년 전 조회 1,441
10년 전 조회 1,398
10년 전 조회 1,619
10년 전 조회 1,392
10년 전 조회 1,690
10년 전 조회 1,370
10년 전 조회 1,711
10년 전 조회 1,400
10년 전 조회 1,630