php中字元怎麼轉編碼

2020-07-16 10:06:27

php中字元轉編碼的方式:

第一種,iconv()函數:

//iconv('目標編碼', '原編碼', '字串')
$encode = mb_detect_encoding( $str, array('ASCII','UTF-8','GB2312','GBK'));
if ( !$encode =='UTF-8' ){
     $str = iconv('UTF-8',$encode,$str);
}

第二種,mb_convert_encoding()

//mb_convert_encoding('要轉編碼的字串','目標編碼','原編碼')
//mb_detect_encoding('字串'):
mb_convert_encoding($str,'utf-8',mb_detect_encoding($str))

第三種,轉成base64字串

base64_encode($canonical_request)

第四種,轉換URL編碼

// urlencode()函數原理就是首先把中文字元轉換為十六進位制,然後在每個字元前面加一個識別符號%,對字串中除了 -_. 之外的
所有非字母數位字元都將被替換成百分號(%)後跟兩位十六進位制數,空格則編碼為加號(+)。
urlencode('URL字串')

// urldecode()函數與urlencode()函數原理相反,用於解碼已編碼的 URL 字串,其原理就是把十六進位制字串轉換為中文字元。

urldecode('URL字串')
以上就是php中字元怎麼轉編碼的詳細內容,更多請關注TW511.COM其它相關文章!