相關函數說明:
iconv
命令是用來轉換檔案的編碼方式的,例如它可以將UTF8編碼的轉換成GB18030的編碼,反過來也行。
str_split()
函數把字串分割到陣列中。
bin2hex()
函數把 ASCII 字元的字串轉換為十六進位值。字串可透過使用 pack() 函數再轉換回去。
hexdec()
函數把十六進位數轉換為十進位數。
免費影片教學推薦:php影片教學
範例如下:
/** * $str 原始中文字符串 * $encoding 原始字符串的编码,默认GBK * $prefix 编码后的前缀,默认"&#" * $postfix 编码后的后缀,默认";" */ function unicode_encode($str, $encoding = 'GBK', $prefix = '&#', $postfix = ';') { $str = iconv($encoding, 'UCS-2', $str); $arrstr = str_split($str, 2); $unistr = ''; for($i = 0, $len = count($arrstr); $i < $len; $i++) { $dec = hexdec(bin2hex($arrstr[$i])); $unistr .= $prefix . $dec . $postfix; } return $unistr; }
相關文章教學推薦:php教學
以上是php實作將中文轉換為unicode的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!