COMING SOON 🚀

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

· 10년 전 · 1288

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


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,290
10년 전 조회 1,321
10년 전 조회 1,329
10년 전 조회 1,358
10년 전 조회 1,381
10년 전 조회 1,360
10년 전 조회 1,515
10년 전 조회 1,503
10년 전 조회 1,288
10년 전 조회 1,588
10년 전 조회 1,946
10년 전 조회 1,378
10년 전 조회 1,646
10년 전 조회 1,604
10년 전 조회 1,454
10년 전 조회 1,411
10년 전 조회 1,371
10년 전 조회 1,491
10년 전 조회 1,235
10년 전 조회 1,305
10년 전 조회 1,531
10년 전 조회 1,355
10년 전 조회 1,347
10년 전 조회 1,309
10년 전 조회 1,331
10년 전 조회 1,319
10년 전 조회 1,323
10년 전 조회 1,343
10년 전 조회 1,282
10년 전 조회 1,459
10년 전 조회 1,286
10년 전 조회 1,289
10년 전 조회 1,376
10년 전 조회 2,116
10년 전 조회 1,345
10년 전 조회 1,338
10년 전 조회 1,430
10년 전 조회 1,332
10년 전 조회 1,504
10년 전 조회 1,415
10년 전 조회 1,347
10년 전 조회 1,343
10년 전 조회 1,388
10년 전 조회 1,371
10년 전 조회 1,282
10년 전 조회 1,249
10년 전 조회 1,212
10년 전 조회 1,253
10년 전 조회 1,636
10년 전 조회 1,289
10년 전 조회 1,398
10년 전 조회 1,350
10년 전 조회 1,578
10년 전 조회 1,368
10년 전 조회 1,319
10년 전 조회 1,326
10년 전 조회 1,360
10년 전 조회 1,478
10년 전 조회 1,417
10년 전 조회 1,317
10년 전 조회 1,353
10년 전 조회 2,279
10년 전 조회 2,159
10년 전 조회 1,732
10년 전 조회 2,293
10년 전 조회 1,358
10년 전 조회 1,780
10년 전 조회 2,010
10년 전 조회 1,490
10년 전 조회 1,458
10년 전 조회 1,425
10년 전 조회 1,282
10년 전 조회 1,464
10년 전 조회 1,468
10년 전 조회 1,960
10년 전 조회 1,404
10년 전 조회 1,454
10년 전 조회 1,481
10년 전 조회 2,389
10년 전 조회 1,520
10년 전 조회 1,408
10년 전 조회 1,489
10년 전 조회 1,534
10년 전 조회 1,616
10년 전 조회 1,406
10년 전 조회 1,463
10년 전 조회 1,806
10년 전 조회 1,767
10년 전 조회 1,743
10년 전 조회 1,302
10년 전 조회 1,420
10년 전 조회 1,373
10년 전 조회 1,317
10년 전 조회 1,536
10년 전 조회 1,321
10년 전 조회 1,624
10년 전 조회 1,302
10년 전 조회 1,625
10년 전 조회 1,315
10년 전 조회 1,564