Charset Auto Detection(캐릭터셋 자동 감지)

명시적으로 캐릭터셋을 정하지 않는 상태에서
param 으로 넘어온값이나, 문자열의 charset을 검출해야 하는 경우가 있습니다.
흔하게 발생되는 경우는 아니지만, 외부 시스템 연동과 같은 특수상황에서는 종종 발생하는 케이스입니다.
자바쪽 자료를 찾다가 php 자료들도 보이길래 정리해봅니다.
자동검출이기 때문에 100% 완벽하지 않습니다.

1. mb_detect_encoding()
- http://kr.php.net/manual/en/function.mb-detect-encoding.php

2. 캐릭터셋의 바이트 구조를 분석하여 직접 코딩
- http://my.oops.org/62
<?php
//
// +----------------------------------------------------------------------+
// | PHP Version 4 |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2003 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.02 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Author: JoungKyun Kim <http://www.oops.org> |
// +----------------------------------------------------------------------+
//
// $Id: eSystem.php,v 1.2 2005/07/11 05:58:11 oops Exp $

require_once 'PEAR.php';

/**
* PEAR's eSystem:: interface. Defines the php extended system mapping function
* and any utility mapping function
*
* @access public
* @version $Revision: 0.1 $
* @package Unicode
*/
class Unicode extends PEAR
{
function chr2bin ($c, $shift = '') {
$c = ord ($c);

if ( $shift && preg_match ('/^([<>]+)[\s]*([0-9]+)/', $shift, $match) ) :
switch ($match[1]) :
case '>>' : $c = $c >> $match[2]; break;
case '<<' : $c = $c << $match[2]; break;
case '<' : $c = $c < $match[2]; break;
case '>' : $c = $c > $match[2]; break;
endswitch;
endif;

return decbin ($c);
}

function is_utf8 ($str) {
$_l = strlen ($str);
$_not = 0;

for ( $i=0; $i<$_l; $i++ ) :
#$_first = $this->chr2bin ($str[$i]);

# if 7bit charactior or numeric, skipped
#if ( strlen ($_first) != 8 )
# continue;

# if single byte charactors, skipped
if ( ! (ord ($str[$i]) & 0x80) ) :
continue;
endif;

$_first = $this->chr2bin ($str[$i], '>>4');

switch ( $_first ) :
case 1111 : $b = 3; break; # 4byte
case 1110 : $b = 2; break; # 3byte
default : return 0; # not utf8
endswitch;

for ( $j=1; $j<$b; $j++ ) :
if ( substr ($this->chr2bin ($str[$i+$j]), 0, 2) != 10 )
return 0;
endfor;

break;
endfor;

return $_not ? 0 : 1;
}
}

/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/
?>

사용예
<?
require_once 'Unicode.php';
$_f = 'usage_200509.html';
$_ff = 'bb.html';

$u = new Unicode;
if ( file_exists ($_ff) )
unlink ($_ff);

$_t = file ($_f);

foreach ( $_t as $_v ) :
$_v = trim ($_v);
if ( $u->is_utf8 ($_v) )
putfile_lib ($_ff, utf8decode_lib ($_v, 'cp949'), 1);
else
putfile_lib ($_ff, $_v, 1);
endforeach;

?>

그외 참고 url
http://my.oops.org/126<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
|

댓글 1개

내가 조아라 하는 pear소스네요...ㅎㅎ
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
15년 전 조회 1,560
15년 전 조회 1,493
15년 전 조회 1,523
15년 전 조회 1,452
15년 전 조회 1,512
15년 전 조회 1,238
15년 전 조회 1,829
15년 전 조회 1,381
15년 전 조회 1,197
15년 전 조회 3,183
15년 전 조회 942
15년 전 조회 1,420
15년 전 조회 1,403
15년 전 조회 1,348
15년 전 조회 1,220
15년 전 조회 1,532
15년 전 조회 1,590
15년 전 조회 1,240
15년 전 조회 1,639
15년 전 조회 1,270
15년 전 조회 1,519
15년 전 조회 1,649
15년 전 조회 1,405
15년 전 조회 1,204
15년 전 조회 1,404
15년 전 조회 1,518
15년 전 조회 1,221
15년 전 조회 1,205
15년 전 조회 1,593
15년 전 조회 1,375
15년 전 조회 1,284
15년 전 조회 1,426
15년 전 조회 1,587
15년 전 조회 1,275
15년 전 조회 1,299
15년 전 조회 1,005
15년 전 조회 1,231
15년 전 조회 1,428
15년 전 조회 1,269
15년 전 조회 1,248
15년 전 조회 1,488
15년 전 조회 2,001
15년 전 조회 933
15년 전 조회 1,358
15년 전 조회 1,356
15년 전 조회 1,252
15년 전 조회 1,228
15년 전 조회 1,345
15년 전 조회 1,114
15년 전 조회 2,348
15년 전 조회 1,109
15년 전 조회 2,013
15년 전 조회 1,129
15년 전 조회 1,192
15년 전 조회 1,277
15년 전 조회 1,268
15년 전 조회 1,944
15년 전 조회 1,342
15년 전 조회 1,309
15년 전 조회 1,473
15년 전 조회 1,324
15년 전 조회 1,135
15년 전 조회 1,298
15년 전 조회 1,156
15년 전 조회 1,368
15년 전 조회 920
15년 전 조회 1,316
15년 전 조회 1,340
15년 전 조회 1,261
15년 전 조회 1,197
15년 전 조회 1,531
15년 전 조회 1,256
15년 전 조회 1,181
15년 전 조회 1,225
15년 전 조회 1,183
15년 전 조회 1,167
15년 전 조회 1,269
15년 전 조회 1,649
15년 전 조회 1,022
15년 전 조회 1,086
15년 전 조회 1,247
15년 전 조회 1,266
15년 전 조회 1,113
15년 전 조회 1,696
15년 전 조회 1,217
15년 전 조회 1,434
15년 전 조회 1,836
15년 전 조회 1,324
15년 전 조회 1,338
15년 전 조회 1,255
15년 전 조회 1,210
15년 전 조회 1,517
15년 전 조회 1,288
15년 전 조회 1,167
15년 전 조회 1,564
15년 전 조회 2,723
15년 전 조회 1,282
15년 전 조회 1,417
15년 전 조회 1,544
15년 전 조회 1,260