php實現將中文轉為unicode的方法

2020-07-16 10:06:43

範例如下:

/**
 * $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的方法的詳細內容,更多請關注TW511.COM其它相關文章!