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

· 10년 전 · 1385

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


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,380
10년 전 조회 1,421
10년 전 조회 1,418
10년 전 조회 1,443
10년 전 조회 1,484
10년 전 조회 1,446
10년 전 조회 1,604
10년 전 조회 1,581
10년 전 조회 1,380
10년 전 조회 1,688
10년 전 조회 2,020
10년 전 조회 1,485
10년 전 조회 1,728
10년 전 조회 1,691
10년 전 조회 1,546
10년 전 조회 1,510
10년 전 조회 1,476
10년 전 조회 1,572
10년 전 조회 1,317
10년 전 조회 1,404
10년 전 조회 1,623
10년 전 조회 1,451
10년 전 조회 1,430
10년 전 조회 1,393
10년 전 조회 1,420
10년 전 조회 1,426
10년 전 조회 1,424
10년 전 조회 1,451
10년 전 조회 1,401
10년 전 조회 1,565
10년 전 조회 1,391
10년 전 조회 1,396
10년 전 조회 1,497
10년 전 조회 2,217
10년 전 조회 1,459
10년 전 조회 1,431
10년 전 조회 1,524
10년 전 조회 1,432
10년 전 조회 1,627
10년 전 조회 1,520
10년 전 조회 1,445
10년 전 조회 1,445
10년 전 조회 1,469
10년 전 조회 1,458
10년 전 조회 1,388
10년 전 조회 1,356
10년 전 조회 1,328
10년 전 조회 1,368
10년 전 조회 1,757
10년 전 조회 1,386
10년 전 조회 1,487
10년 전 조회 1,443
10년 전 조회 1,676
10년 전 조회 1,488
10년 전 조회 1,411
10년 전 조회 1,433
10년 전 조회 1,466
10년 전 조회 1,591
10년 전 조회 1,515
10년 전 조회 1,420
10년 전 조회 1,452
10년 전 조회 2,398
10년 전 조회 2,260
10년 전 조회 1,839
10년 전 조회 2,405
10년 전 조회 1,479
10년 전 조회 1,873
10년 전 조회 2,109
10년 전 조회 1,599
10년 전 조회 1,545
10년 전 조회 1,528
10년 전 조회 1,387
10년 전 조회 1,559
10년 전 조회 1,560
10년 전 조회 2,079
10년 전 조회 1,500
10년 전 조회 1,559
10년 전 조회 1,563
10년 전 조회 2,490
10년 전 조회 1,606
10년 전 조회 1,500
10년 전 조회 1,581
10년 전 조회 1,627
10년 전 조회 1,709
10년 전 조회 1,511
10년 전 조회 1,572
10년 전 조회 1,918
10년 전 조회 1,874
10년 전 조회 1,847
10년 전 조회 1,403
10년 전 조회 1,505
10년 전 조회 1,458
10년 전 조회 1,422
10년 전 조회 1,642
10년 전 조회 1,417
10년 전 조회 1,714
10년 전 조회 1,396
10년 전 조회 1,734
10년 전 조회 1,433
10년 전 조회 1,652