文字編碼的轉換mb_convert_encoding()
mb_convert_encoding( $str, $encoding1,$encoding2 )
$str,要轉換編碼的字符串
$encoding1,目標編碼,如utf-8,gbk,大小寫均可
$encoding2,原編碼,如utf-8,gbk,大小寫均可
實例1
復制代碼 代碼如下:
<?php
$str=':http://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8"); //編碼轉換為utf-8
?>
復制代碼 代碼如下:
<?php
$str=':http://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8", "GBK"); //已知原編碼為GBK,轉換為utf-8
?>
復制代碼 代碼如下:
<?php
$str=':http://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8", "auto"); //未知原編碼,通過auto自動檢測後,轉換編碼為utf-8
?>
PHP下編碼轉換函數mb_convert_encoding與iconv的使用說明