php中字符轉(zhuǎn)編碼的方式:第一種,()函數(shù)
2021-07-02
php中字符轉(zhuǎn)換的方式:
第一種,()函數(shù):
//iconv('目標(biāo)編碼', '原編碼', '字符串') $encode = mb_detect_encoding( $str, array('ASCII','UTF-8','GB2312','GBK')); if ( !$encode =='UTF-8' ){ $str = iconv('UTF-8',$encode,$str); }
第二種php 漢字轉(zhuǎn)url編碼,()
//mb_convert_encoding('要轉(zhuǎn)編碼的字符串','目標(biāo)編碼','原編碼') //mb_detect_encoding('字符串'): mb_convert_encoding($str,'utf-8',mb_detect_encoding($str))
第三種類(lèi)型php 漢字轉(zhuǎn)url編碼,轉(zhuǎn)換為字符串
base64_encode($canonical_request)
第四種,轉(zhuǎn)換URL編碼
// urlencode()函數(shù)原理就是首先把中文字符轉(zhuǎn)換為十六進(jìn)制,然后在每個(gè)字符前面加一個(gè)標(biāo)識(shí)符%,對(duì)字符串中除了 -_. 之外的 所有非字母數(shù)字字符都將被替換成百分號(hào)(%)后跟兩位十六進(jìn)制數(shù),空格則編碼為加號(hào)(+)。 urlencode('URL字符串') // urldecode()函數(shù)與urlencode()函數(shù)原理相反,用于解碼已編碼的 URL 字符串,其原理就是把十六進(jìn)制字符串轉(zhuǎn)換為中文字符。 urldecode('URL字符串')
推薦教程:《php教程》
以上是php中如何對(duì)字符進(jìn)行編碼的詳細(xì)內(nèi)容。更多內(nèi)容請(qǐng)關(guān)注php中文網(wǎng)其他相關(guān)文章!
免責(zé)聲明:本文首發(fā)于php中文網(wǎng)。轉(zhuǎn)載請(qǐng)注明出處。感謝您的尊重!如果您有任何問(wèn)題,請(qǐng)聯(lián)系我們
專(zhuān)題推薦:php