php將其他編碼轉換成utf8的方法:1、建立一個PHP範例檔案;2、找出字串本身的編碼;3、透過mb_convert_encoding轉換為utf-8編碼即可。
本文操作環境:Windows7系統,PHP7.4版,Dell G3電腦。
php 怎麼將其他編碼 轉utf8?
#php將任意編碼的內容轉換成utf-8
想法
先找出字串本身的編碼,再轉換為utf-8編碼。
方法
function str_to_utf8 ($str = '') { $current_encode = mb_detect_encoding($str, array("ASCII","GB2312","GBK",'BIG5','UTF-8')); $encoded_str = mb_convert_encoding($str, 'UTF-8', $current_encode); return $encoded_str; }
推薦學習:《PHP影片教學》
以上是php 怎麼將其他編碼 轉utf8的詳細內容。更多資訊請關注PHP中文網其他相關文章!