不過英文一般不會有編碼問題,只有中文資料才會有這個問題。例如你用Zend Studio或Editplus寫程式時,用的是gbk編碼,如果資料需要入資料庫,而資料庫的編碼為utf8時,這時就要把資料進行編碼轉換,不然進到資料庫就會變成亂碼。
mb_convert_encoding的用法見官方:
http://cn.php.net/manual/zh/function.mb-convert-encoding.php
做一個GBK To UTF-8
複製程式碼 程式碼如下:
header("content-Type: text/html; charset=Utf-8 " );
echo mb_convert_encoding("你繫我的友仔", "UTF-8", "GBK");
?>
再來個GB2312 To Big5
複製程式碼 程式碼如下:
header("content-Type: text/html; charset =big5"php
header("content-Type: text/html; charset =big5"php
header("content-Type: text/html; charset =big5"php
header("content-Type: text/html; charset =big5"php
header("content-Type: text/html; charset =big5" );
echo mb_convert_encoding("你是我的朋友", "big5", "GB2312");
?>
不過要使用上面的函數需要安裝但是需要先enable mbstring 擴展庫。
PHP中的另外一個函數iconv也是用來轉換字串編碼的,與上函數功能相似。
下面還有一些詳細的例子:
iconv — Convert string to requested character encoding
(PHP 4 >= 4.0.5, PHP 5)
mb_convert_encoding — Convert character encoding
PHPf 4 >= 4.0.6, PHP 5)
用法:
string mb_convert_encoding ( string str, string to_encoding [, mixed from_encoding] )
需要先擴充函式庫,在 extension裡將; =php_mbstring.dll 前面的; 去掉
mb_convert_encoding 可以指定多種輸入編碼,它會根據內容自動識別,但是執行效率比iconv差太多;
string iconv ( string in_charset, string out_charset, string str )
注意:第二個參數,除了可以指定要轉換到的編碼以外,還可以增加兩個後綴://TRANSLIT 和//IGNORE,其中//TRANSLIT 會自動將不能直接轉換的字元變成一個或多個近似的字符,//IGNORE 會忽略掉不能轉換的字符,而預設效果是從第一個非法字符截斷。
Returns the converted string or FALSE on failure.
使用:
發現iconv在轉換字元」—」到gb2312時會出錯,如果沒有ignore參數,所有該字元後面的字串都無法被儲存。不管怎麼樣,這個」—」都無法轉換成功,無法輸出。 另外mb_convert_encoding沒有這個bug.
一般情況下用iconv,只有當遇到無法確定原編碼是何種編碼,或者iconv轉換後無法正常顯示時才用mb_convert_encoding 函數.
from_encoding is specified by character code name before conversion. it can be array or string - comma separated enumerated list. If it is not specified, the internal encoding will be used.
/* Auto detect encoding from JIS, e2coding from JIS-win, thewin, the converts. str to UCS-2LE */
$str = mb_convert_encoding($str, “UCS-2LE”, “JIS, eucjp-win, sjis-win”);
/* “auto” is expanded to “ASCII ,JIS,UTF-8,EUC-JP,SJIS” */ $str = mb_convert_encoding($str, “EUC-JP”, “auto”); 範例:
複製程式碼
程式碼如下:
$content = iconv("GBK", "UTF-8", $content);
$content = mb_convert_encoding ($content, "UTF-8","GBK");
PHP中使用mb_convert_encoding轉碼的小陷阱
在php程式中使用mb_convert_encoding()方法進行字元編碼轉換大家都很熟悉了,平時也在大量的使用。而且在一般情況下該方法也表現的夠好,值得表揚。但在一個專案中我們需要使用它進行UTF8到GBK的轉換,在轉換一些特殊字元時發現了一個不大不小的問題。具體表現為mb把在utf8可編碼的字符而在gbk中不可編碼的字符都轉成了
以上就介紹了conversation是什麼意思 PHP下編碼轉換函數mb_convert_encoding與iconv的使用說明,包括了conversation是什麼意思方面的內容,希望對PHP教程有興趣的朋友有所幫助。