PHP出現iconv(): Detected an illegal character in input string

PHP傳給JS字符串用ecsape轉換加到url裏,又用PHP接收,再用網上找的unscape函數轉換一下,這樣獲得的字符串是UTF-8的,但我須要的是GB2312,因而用iconv轉換php

開始是這樣用的app

$str = iconv(‘UTF-8’, ‘GB2312’, unescape(isset($_GET[‘str’])? $_GET[‘str’]:」));函數

上線後報一堆這樣的錯:iconv() : Detected an illegal character in input string測試

考慮到GB2312字符集比較小,換個大的吧,因而改爲GBK:編碼

$str = iconv(‘UTF-8’, ‘GBK’, unescape(isset($_GET[‘str’])? $_GET[‘str’]:」));url

上線後仍是報一樣的錯!code

再認真讀手冊,發現有這麼一段:ci

If you append the string //TRANSLIT to out_charset transliteration is activated. This means that when a character can’t be represented in the target charset, it can be approximated through one or several similarly looking characters. If you append the string //IGNORE, characters that cannot be represented in the target charset are silently discarded. Otherwise, str is cut from the first illegal character.字符串

因而改爲:get

$str = iconv(‘UTF-8’, ‘GBK//IGNORE’, unescape(isset($_GET[‘str’])? $_GET[‘str’]:」));

本地測試//IGNORE能忽略掉它不認識的字接着往下轉,而且不報錯,而//TRANSLIT是截掉它不認識的字及其後面的內容,而且報錯。//IGNORE是我須要的。

如今等待上線看結果(這樣不是好的作法,繼續琢磨手冊,上網搜搜看),呵呵。。。

在網上找到下面這篇文章,發現mb_convert_encoding也能夠,但效率比iconv差。

轉換字符串編碼iconv與mb_convert_encoding的區別

iconv — Convert string to requested character encoding(PHP 4 >= 4.0.5, PHP 5)

mb_convert_encoding — Convert character encoding(PHP 4 >= 4.0.6, PHP 5)

用法:

string mb_convert_encoding ( string str, string to_encoding [, mixed from_encoding] )

須要先啓用 mbstring 擴展庫,在 php.ini裏將; extension=php_mbstring.dll 前面的 ; 去掉

string iconv ( string in_charset, string out_charset, string str )

注意:

第二個參數,除了能夠指定要轉化到的編碼之外,還能夠增長兩個後綴://TRANSLIT 和 //IGNORE,

其中:

//TRANSLIT 會自動將不能直接轉化的字符變成一個或多個近似的字符,

//IGNORE 會忽略掉不能轉化的字符,而默認效果是從第一個非法字符截斷。

Returns the converted string or FALSE on failure.

使用:

1. 發現iconv在轉換字符」-「到gb2312時會出錯,若是沒有ignore參數,全部該字符後面的字符串都沒法被保存。無論怎麼樣,這個」-「都沒法轉換成功,沒法輸出。另外mb_convert_encoding沒有這個bug.

2. mb_convert_encoding 能夠指定多種輸入編碼,它會根據內容自動識別,可是執行效率比iconv差太多;如:$str = mb_convert_encoding($str,」euc-jp」,」ASCII,JIS,EUC-JP,SJIS,UTF- 8″);「ASCII,JIS,EUC-JP,SJIS,UTF-8」的順序不一樣效果也有差別

3. 通常狀況下用 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.

$str = mb_convert_encoding($str, 「UCS-2LE」, 「JIS, eucjp-win, sjis-win」);

$str = mb_convert_encoding($str, 「EUC-JP’, 「auto」);

例子:

$content = iconv(「GBK」, 「UTF-8」, $content);

$content = mb_convert_encoding($content, 「UTF-8」, 「GBK」);

相關文章
相關標籤/搜索