php 문자 인코딩 변환 클래스, ANSI, Unicode, Unicode big endian, UTF-8, UTF-8+Bom 및 상호 변환을 지원합니다.
네 가지 일반적인 텍스트 파일 인코딩 방법
ANSI 인코딩:
파일 헤더 없음(파일 인코딩 시작 부분의 아이콘 바이트)
ANSI로 인코딩된 영숫자는 1바이트, 한자는 2바이트를 차지합니다
캐리지 리턴 및 라인 피드 문자, 단일 바이트, 16진수 표현은 0d 0a입니다
UNICODE 인코딩:
파일 헤더, 16진수 표현은 FF FE
각 문자는 2바이트로 인코딩됩니다.
캐리지 리턴 및 라인 피드 문자, 2바이트, 16진수 표현은 000d 000a
유니코드 빅 엔디안 인코딩:
파일 헤더의 16진수 표현은 FE FF
다음 인코딩은 문자의 상위 비트를 앞에 두고 하위 비트를 뒤에 넣습니다. 유니코드 인코딩
캐리지 리턴 및 줄 바꿈 문자로 반전됨, 2바이트, 16진수 표현은 0d00 0a00
UTF-8 인코딩:
파일 헤더, 16진수 표현은 EF BB BF
UTF-8은 변수입니다. 유니코드의 길이 문자 인코딩. 숫자, 문자, 캐리지 리턴 및 줄 바꿈은 모두 1바이트로 표시됩니다.
캐리지 리턴 및 줄 바꿈 문자는 3바이트를 차지합니다. , 단일 바이트, 16진수 표현은 0d 0a
변환 원리: 먼저 문자 인코딩을 UTF-8로 변환한 다음 UTF -8에서 해당 문자 인코딩으로 변환합니다. .
CharsetConv.class.php
<?php /** 字符编码转换类, ANSI、Unicode、Unicode big endian、UTF-8、UTF-8+Bom互相转换 * Date: 2015-01-28 * Author: fdipzone * Ver: 1.0 * * Func: * public convert 转换 * private convToUtf8 把编码转为UTF-8编码 * private convFromUtf8 把UTF-8编码转换为输出编码 */ class CharsetConv{ // class start private $_in_charset = null; // 源编码 private $_out_charset = null; // 输出编码 private $_allow_charset = array('utf-8', 'utf-8bom', 'ansi', 'unicode', 'unicodebe'); /** 初始化 * @param String $in_charset 源编码 * @param String $out_charset 输出编码 */ public function __construct($in_charset, $out_charset){ $in_charset = strtolower($in_charset); $out_charset = strtolower($out_charset); // 检查源编码 if(in_array($in_charset, $this->_allow_charset)){ $this->_in_charset = $in_charset; } // 检查输出编码 if(in_array($out_charset, $this->_allow_charset)){ $this->_out_charset = $out_charset; } } /** 转换 * @param String $str 要转换的字符串 * @return String 转换后的字符串 */ public function convert($str){ $str = $this->convToUtf8($str); // 先转为utf8 $str = $this->convFromUtf8($str); // 从utf8转为对应的编码 return $str; } /** 把编码转为UTF-8编码 * @param String $str * @return String */ private function convToUtf8($str){ if($this->_in_charset=='utf-8'){ // 编码已经是utf-8,不用转 return $str; } switch($this->_in_charset){ case 'utf-8bom': $str = substr($str, 3); break; case 'ansi': $str = iconv('GBK', 'UTF-8//IGNORE', $str); break; case 'unicode': $str = iconv('UTF-16le', 'UTF-8//IGNORE', substr($str, 2)); break; case 'unicodebe': $str = iconv('UTF-16be', 'UTF-8//IGNORE', substr($str, 2)); break; default: break; } return $str; } /** 把UTF-8编码转换为输出编码 * @param String $str * @return String */ private function convFromUtf8($str){ if($this->_out_charset=='utf-8'){ // 输出编码已经是utf-8,不用转 return $str; } switch($this->_out_charset){ case 'utf-8bom': $str = "\xef\xbb\xbf".$str; break; case 'ansi': $str = iconv('UTF-8', 'GBK//IGNORE', $str); break; case 'unicode': $str = "\xff\xfe".iconv('UTF-8', 'UTF-16le//IGNORE', $str); break; case 'unicodebe': $str = "\xfe\xff".iconv('UTF-8', 'UTF-16be//IGNORE', $str); break; default: break; } return $str; } } // class end ?>
<?php require "CharsetConv.class.php"; $str = file_get_contents('source/unicodebe.txt'); $obj = new CharsetConv('unicodebe', 'utf-8bom'); $response = $obj->convert($str); file_put_contents('response/utf-8bom.txt', $response, true); ?>
위 내용은 ANSI, Unicode, Unicode big endian, UTF-8, UTF-8+Bom 및 기타 변환을 지원하는 PHP 문자 인코딩 변환 클래스를 소개하고 관련 내용을 포함하여 PHP에 관심이 있는 친구들에게 도움이 되기를 바랍니다. 튜토리얼.