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

· 10년 전 · 2861

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


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;
}  

|
댓글을 작성하시려면 로그인이 필요합니다. 로그인

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
JavaScript 10년 전 조회 2,913
PHP 10년 전 조회 2,465
PHP 10년 전 조회 2,425
PHP 10년 전 조회 3,051
웹서버 10년 전 조회 3,316
PHP 10년 전 조회 7,197
PHP 10년 전 조회 2,481
PHP 10년 전 조회 2,701
PHP 10년 전 조회 2,629
PHP 10년 전 조회 2,697
PHP 10년 전 조회 2,065
PHP 10년 전 조회 2,433
PHP 10년 전 조회 2,248
PHP 10년 전 조회 2,733
PHP 10년 전 조회 2,862
PHP 10년 전 조회 3,159
PHP 10년 전 조회 2,795
PHP 10년 전 조회 1.2만
PHP 10년 전 조회 2,790
PHP 10년 전 조회 2,408
PHP 10년 전 조회 2,203
PHP 10년 전 조회 2,582
PHP 10년 전 조회 3,599
PHP 10년 전 조회 2,395
PHP 10년 전 조회 1,864
PHP 10년 전 조회 3,146
정규표현식 10년 전 조회 7,734
웹서버 10년 전 조회 2,659
jQuery 10년 전 조회 3,389
jQuery 10년 전 조회 2,930
🐛 버그신고