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

· 10년 전 · 1412

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


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,396
10년 전 조회 1,441
10년 전 조회 1,436
10년 전 조회 1,462
10년 전 조회 1,501
10년 전 조회 1,469
10년 전 조회 1,623
10년 전 조회 1,605
10년 전 조회 1,401
10년 전 조회 1,709
10년 전 조회 2,040
10년 전 조회 1,503
10년 전 조회 1,744
10년 전 조회 1,713
10년 전 조회 1,562
10년 전 조회 1,529
10년 전 조회 1,491
10년 전 조회 1,594
10년 전 조회 1,333
10년 전 조회 1,418
10년 전 조회 1,634
10년 전 조회 1,467
10년 전 조회 1,444
10년 전 조회 1,411
10년 전 조회 1,438
10년 전 조회 1,445
10년 전 조회 1,441
10년 전 조회 1,469
10년 전 조회 1,412
10년 전 조회 1,580
10년 전 조회 1,413
10년 전 조회 1,415
10년 전 조회 1,523
10년 전 조회 2,233
10년 전 조회 1,484
10년 전 조회 1,454
10년 전 조회 1,542
10년 전 조회 1,449
10년 전 조회 1,637
10년 전 조회 1,538
10년 전 조회 1,459
10년 전 조회 1,460
10년 전 조회 1,488
10년 전 조회 1,472
10년 전 조회 1,412
10년 전 조회 1,368
10년 전 조회 1,347
10년 전 조회 1,378
10년 전 조회 1,774
10년 전 조회 1,413
10년 전 조회 1,506
10년 전 조회 1,453
10년 전 조회 1,689
10년 전 조회 1,500
10년 전 조회 1,430
10년 전 조회 1,450
10년 전 조회 1,484
10년 전 조회 1,607
10년 전 조회 1,534
10년 전 조회 1,430
10년 전 조회 1,467
10년 전 조회 2,419
10년 전 조회 2,283
10년 전 조회 1,848
10년 전 조회 2,418
10년 전 조회 1,497
10년 전 조회 1,889
10년 전 조회 2,129
10년 전 조회 1,617
10년 전 조회 1,558
10년 전 조회 1,546
10년 전 조회 1,403
10년 전 조회 1,581
10년 전 조회 1,573
10년 전 조회 2,089
10년 전 조회 1,512
10년 전 조회 1,574
10년 전 조회 1,584
10년 전 조회 2,508
10년 전 조회 1,622
10년 전 조회 1,518
10년 전 조회 1,602
10년 전 조회 1,645
10년 전 조회 1,725
10년 전 조회 1,528
10년 전 조회 1,589
10년 전 조회 1,934
10년 전 조회 1,889
10년 전 조회 1,864
10년 전 조회 1,420
10년 전 조회 1,526
10년 전 조회 1,474
10년 전 조회 1,431
10년 전 조회 1,662
10년 전 조회 1,427
10년 전 조회 1,730
10년 전 조회 1,412
10년 전 조회 1,754
10년 전 조회 1,449
10년 전 조회 1,676