字符編碼轉(zhuǎn)換類,支持ANSI、big、UTF-8+Bom互相轉(zhuǎn)換(圖)
2021-08-08
**php字符編碼轉(zhuǎn)換類,支持ANSI、big、UTF-8、UTF-8+Bom相互轉(zhuǎn)換。 **
**四種常見的文本文件編碼方式**
**ANSI 代碼**:
無文件頭(文件編碼開頭的有效字節(jié))
ANSI編碼的字母數(shù)字占一個字節(jié),漢字占兩個字節(jié)
回車換行php 文件編碼轉(zhuǎn)換,單字節(jié),十六進(jìn)制表示為0d 0a
**編碼:**
文件頭,十六進(jìn)制表示為FF FE
每個字符用兩個字節(jié)編碼
回車,換行,雙字節(jié),十六進(jìn)制表示為000d 000a
** 大編碼:**
文件頭的十六進(jìn)制表示為FE FF
后面的編碼就是把字符的高位放在前面,低位放在后面,正好是編碼的逆過程
回車,換行,雙字節(jié),十六進(jìn)制表示為 0d00 0a00
**UTF-8 編碼:**
文件頭,十六進(jìn)制表示為EF BB BF
UTF-8 是一種變長字符編碼。數(shù)字、字母、回車、換行都用1個字節(jié)表示,漢字占3個字節(jié)。
回車換行,單字節(jié),十六進(jìn)制表示為0d 0a
**轉(zhuǎn)換原則:先將字符編碼轉(zhuǎn)換為UTF-8,再從UTF-8轉(zhuǎn)換為對應(yīng)的字符編碼。 **
**..php**
~~~
/**字符編碼轉(zhuǎn)換類,ANSI,,big,UTF-8、UTF-8+Bom相互轉(zhuǎn)換
*日期:2015-01-28
*:
*版本:1.0
*
*功能:
* 轉(zhuǎn)換
* 將編碼轉(zhuǎn)換為 UTF-8 編碼
* 將 UTF-8 編碼轉(zhuǎn)換為輸出編碼
*/
{//
$ = 空; // 源代碼
$ = 空; // 輸出代碼
$ = ('utf-8','utf-8bom','ansi','','');
/**初始化
* @$ 源碼編碼
* @$ 輸出編碼
*/
($, $){
$ = ($);
$ = ($);
//查看源碼
if(($, $this->)){
$this-> = $;
}
//檢查輸出編碼
if(($, $this->)){
$this-> = $;
}
}
/**轉(zhuǎn)化
* @ $str 要轉(zhuǎn)換的字符串
* @ 轉(zhuǎn)換后的字符串
*/
($str){
$str = $this->($str); // 先轉(zhuǎn)utf8
$str = $this->($str); // 從utf8轉(zhuǎn)換成對應(yīng)的編碼
$str;
}
/**將編碼轉(zhuǎn)為UTF-8編碼
* @ $str
* @
*/
($str){
if($this->=='utf-8'){ // 編碼已經(jīng)是utf-8了,不用轉(zhuǎn)
$str;
}
($this->){
case'utf-8bom':
$str = ($str, 3);
;
case'ansi':
$str = ('GBK','UTF-8//', $str);
;
案例'':
$str = ('UTF-16le','UTF-8//', ($str, 2));
;
案例'':
$str = ('UTF-16be','UTF-8//', ($str, 2));
;
:
;
}
$str;
}
/**將UTF-8編碼轉(zhuǎn)換為輸出編碼
* @ $str
* @
*/
($str){
if($this->=='utf-8'){ // 輸出碼已經(jīng)是utf-8了php 文件編碼轉(zhuǎn)換,不用轉(zhuǎn)
$str;
}
($this->){
case'utf-8bom':
$str = "\xef\xbb\xbf".$str;
;
case'ansi':
$str = ('UTF-8','GBK//', $str);
;
案例'':
$str = "\xff\xfe".('UTF-8','UTF-16le//', $str);
;
案例'':
$str = "\xfe\xff".('UTF-8','UTF-16be//', $str);
;
:
;
}
$str;
}
} // 結(jié)束
~~~
**demo:** 大到 utf-8+bom
~~~
"..php";
$str = ('/.txt');
$obj = new('','utf-8bom');
$ = $obj->($str);
('/utf-8bom.txt', $, true);
~~~
**源碼下載地址:【點擊查看】()**