您好,登錄后才能下訂單哦!
這篇文章主要介紹了php給文件轉(zhuǎn)碼的實(shí)現(xiàn)方法,具有一定借鑒價(jià)值,需要的朋友可以參考下。下面就和我一起來(lái)看看吧。
php給文件轉(zhuǎn)碼的方法是:首先使用mb_detect_encoding()函數(shù)判斷文件使用的編碼;然后再使用函數(shù)mb_convert_encoding()來(lái)為文件進(jìn)行轉(zhuǎn)碼即可。
相關(guān)函數(shù)介紹:
mb_convert_encoding()函數(shù)轉(zhuǎn)換字符編碼。
mb_detect_encoding() 函數(shù)判斷字符串使用的編碼。
函數(shù)語(yǔ)法:
mb_convert_encoding($str,$encoding1,$encoding2);
代碼實(shí)現(xiàn):
function characet($data){ if( !empty($data) ){ $fileType = mb_detect_encoding($data , array('UTF-8','GBK','LATIN1','BIG5')) ; if( $fileType != 'UTF-8'){ $data = mb_convert_encoding($data ,'utf-8' , $fileType); } } return $data; }
以上就是php給文件轉(zhuǎn)碼的實(shí)現(xiàn)方法的詳細(xì)內(nèi)容了,看完之后是否有所收獲呢?如果想了解更多相關(guān)內(nèi)容,歡迎來(lái)億速云行業(yè)資訊!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。