iconv函式庫能夠完成各種字元集間的轉換,是php程式設計中不可或缺的基礎函式庫。
1、下載libiconv函式庫http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.9.2.tar.gz;
2.解壓縮tar -zxvf libiconv-1.9.2 .tar.gz;
3、安裝libiconv
#configure --prefix=/usr/local/iconv
參數- -with-ic/local/iconv
windows下
最近在做一個小偷程序,需要用到iconv函數把抓取來過的utf-8編碼的頁面轉成gb2312, 發現只有用iconv函數把抓取過來的資料一轉碼資料就會無緣無故的少一些。 讓我鬱悶了好一會兒,去網路上一查資料才知道這是iconv函數的一個bug。 iconv在轉換字元"—"到gb2312時會出錯
解決方法很簡單,就是在需要轉成的編碼後加 "//IGNORE" 也就是iconv函數第二個參數後.如下:
以下為引用的內容:
複製程式碼 程式碼如下:
iconv("UTF-8","GB2312///IGNORE ",$data)
ignore的意思是忽略轉換時的錯誤,如果沒有ignore參數,所有該字元後面的字串都無法被保存。
複製程式碼 程式碼如下:
echo $str= '你好,這裡是賣咖啡!';= 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中使用iconv函數時容易忽略的參數
今天在處理抓取內容的時候,當採用iconv進行編碼轉換的時候,發現結果會中斷,猜是字符集的問題,考慮怎麼跳過目標字符集不存在的字符,查手冊發現iconv的函數只有三個參數,好像不行,然後查網上有人說可以,但是很奇怪怎麼實現,最後發現英文描述有說可以加標識到目標編碼後面:“TRANSLIT”,很鬱悶怎麼加呢?原來是先加“//”,真是鬱悶,竟然有這樣的設計
原型: $txtContent = iconv("utf-8",'GBK',$txtContent);
特殊參數:iconv(" UTF-8","GB2312//IGNORE",$data)
兩個可選的輔助參數:TRANSLIT和IGNORE ,(其中IGNORE 是說遇到無法轉換的就跳過)。Description
string iconv ( string in_charset, string out_charset, string str )
Performs a character set conversion on the string str from in_charset to out_charset. Returns the convertion on the string str from in_charset to out_charset. Returns the converted string or Fail. //TRANSLIT to out_charset transliteration is activated. This means that when a。 represented in the target charset are silently discarded. Otherwise, str is cut from the first illegal character.
以上就介紹了round函數的使用方法 php中iconv函數使用方法,包括了round函數的使用方法方面的內容,希望對PHP教程有興趣的朋友有所幫助。