PHP實現(xiàn)Unicode編碼相互轉(zhuǎn)換的方法示例
本文實例講述了PHP實現(xiàn)Unicode編碼相互轉(zhuǎn)換的方法。分享給大家供大家參考,具體如下:
<?php /** * $str 原始中文字符串 * $encoding 原始字符串的編碼,默認utf-8 * $prefix 編碼后的前綴,默認"&#" * $postfix 編碼后的后綴,默認";" */ function unicode_encode($str, $encoding = 'utf-8', $prefix = '&#', $postfix = ';') { //將字符串拆分 $str = iconv("UTF-8", "gb2312", $str); $cind = 0; $arr_cont = array(); for ($i = 0; $i < strlen($str); $i++) { if (strlen(substr($str, $cind, 1)) > 0) { if (ord(substr($str, $cind, 1)) < 0xA1) { //如果為英文則取1個字節(jié) array_push($arr_cont, substr($str, $cind, 1)); $cind++; } else { array_push($arr_cont, substr($str, $cind, 2)); $cind+=2; } } } foreach ($arr_cont as &$row) { $row = iconv("gb2312", "UTF-8", $row); } //轉(zhuǎn)換Unicode碼 foreach ($arr_cont as $key => $value) { $unicodestr.= $prefix . base_convert(bin2hex(iconv('utf-8', 'UCS-4', $value)), 16, 10) .$postfix; } return $unicodestr; } /** * $str Unicode編碼后的字符串 * $decoding 原始字符串的編碼,默認utf-8 * $prefix 編碼字符串的前綴,默認"&#" * $postfix 編碼字符串的后綴,默認";" */ function unicode_decode($unistr, $encoding = 'utf-8', $prefix = '&#', $postfix = ';') { $arruni = explode($prefix, $unistr); $unistr = ''; for ($i = 1, $len = count($arruni); $i < $len; $i++) { if (strlen($postfix) > 0) { $arruni[$i] = substr($arruni[$i], 0, strlen($arruni[$i]) - strlen($postfix)); } $temp = intval($arruni[$i]); $unistr .= ($temp < 256) ? chr(0) . chr($temp) : chr($temp / 256) . chr($temp % 256); } return iconv('UCS-2', $encoding, $unistr); } $str = "PHP編程:www.dbjr.com.cn"; $unistr = unicode_encode($str); $unistr2 = unicode_decode($unistr); echo $unistr . '<br />'; echo $unistr2 . '<br />'; $unistr = unicode_encode($str,'GBK','\\u'); $unistr2 = unicode_decode($unistr,'GBK','\\u'); echo $unistr . '<br />'; echo $unistr2 . '<br />';
PS:下面測試過這個函數(shù)比較好用,該代碼需要在utf-8編碼環(huán)境下運行
function unicode_encode($name) {//Unicode編碼 $jsonarr = array($name); $jsonstr = json_encode($jsonarr); if (empty ($jsonstr)) return ''; return substr($jsonstr,2,-2); } function unicode_decode($name) {//Unicode解碼 $json = '{"str":"' . $name . '"}'; $arr = json_decode($json, true); if (empty ($arr)) return ''; return $arr['str']; } $test = "\u811a\u672c\u4e4b\u5bb6"; echo "unicode解碼:".unicode_decode($test)."<br/>"; echo "unicode編碼:".unicode_encode('腳本之家')."<br/>";
PS:這里再為大家提供幾款Unicode編碼轉(zhuǎn)換操作相關(guān)工具供大家參考使用:
在線Unicode/中文轉(zhuǎn)換工具:
http://tools.jb51.net/transcoding/unicode_chinese
Native/Unicode在線編碼轉(zhuǎn)換工具:
http://tools.jb51.net/transcoding/native2unicode
在線中文漢字/ASCII碼/Unicode編碼互相轉(zhuǎn)換工具:
http://tools.jb51.net/transcoding/chinese2unicode
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP編碼與轉(zhuǎn)碼操作技巧匯總》、《php面向?qū)ο蟪绦蛟O(shè)計入門教程》、《PHP數(shù)學運算技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計算法總結(jié)》、《php正則表達式用法總結(jié)》、及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設(shè)計有所幫助。
- Python3的unicode編碼轉(zhuǎn)換成中文的問題及解決方案
- js字符串與Unicode編碼互相轉(zhuǎn)換
- python實現(xiàn)unicode轉(zhuǎn)中文及轉(zhuǎn)換默認編碼的方法
- JS實現(xiàn)的Unicode編碼轉(zhuǎn)換操作示例
- .Net(c#)漢字和Unicode編碼互相轉(zhuǎn)換實例
- C#將Unicode編碼轉(zhuǎn)換為漢字字符串的簡單方法
- JavaScript中字符串與Unicode編碼互相轉(zhuǎn)換的實現(xiàn)方法
- PHP如何實現(xiàn)Unicode和Utf-8編碼相互轉(zhuǎn)換
- js unicode 編碼解析關(guān)于數(shù)據(jù)轉(zhuǎn)換為中文的兩種方法
- C++11 Unicode編碼轉(zhuǎn)換
相關(guān)文章
php獲取$_POST同名參數(shù)數(shù)組的實現(xiàn)介紹
本篇文章是對php獲取$_POST同名參數(shù)數(shù)組的實現(xiàn)方法進行了詳細的分析介紹,需要的朋友參考下2013-06-06php實現(xiàn)對兩個數(shù)組進行減法操作的方法
這篇文章主要介紹了php實現(xiàn)對兩個數(shù)組進行減法操作的方法,涉及php操作數(shù)組的相關(guān)技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-04-04探討file_get_contents與curl效率及穩(wěn)定性的分析
本篇文章是對file_get_contents與curl效率及穩(wěn)定性進行了詳細的分析介紹,需要的朋友參考下2013-06-06解析關(guān)于java,php以及html的所有文件編碼與亂碼的處理方法匯總
本篇文章是對關(guān)于java,php以及html的所有文件編碼與亂碼的處理方法進行了詳細的總結(jié)與介紹,需要的朋友參考下2013-06-06