php把字串轉為utf-8的方法:先找出字串本身的編碼;然後透過「mb_convert_encoding($str, 'UTF-8', $current_encode);」方法把字串轉為utf-8即可。
推薦:《PHP影片教學》
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如何把字串轉為utf-8的詳細內容。更多資訊請關注PHP中文網其他相關文章!