PHP 中 iconv函數的用法


iconv("UTF-8","GB2312//IGNORE",$data)
ignore的意思是忽略轉換時的錯誤,如果沒有ignore參數,所有該字符后面的字符串都無法被保存。

這個iconv()這個函數,在php5中是內置的.謝謝.

列子

 1 <?php
 2 echo $str= '你好,這里是賣咖啡!';
 3 echo '<br />';
 4 
 5 echo iconv('GB2312', 'UTF-8', $str);      //將字符串的編碼從GB2312轉到UTF-8
 6 echo '<br />';
 7 
 8 echo iconv_substr($str, 1, 1, 'UTF-8');   //按字符個數截取而非字節         
 9 print_r(iconv_get_encoding());            //得到當前頁面編碼信息
10 
11 echo iconv_strlen($str, 'UTF-8');         //得到設定編碼的字符串長度
12 
13  
14 
15 //也有這樣用的
16 
17    $content = iconv("UTF-8","gbk//TRANSLIT",$content); 
18 ?>

 

iconv不是php的默認函數,也是默認安裝的模塊。需要安裝才能用的。
如果是windows2000+php,你可以修改php.ini文件,將extension=php_iconv.dll前的";"去掉,同時你要copy你的原php安裝文件下的iconv.dll到你的winnt/system32下(如果你的dll指向的是這個目錄)
在linux環境下,用靜態安裝的方式,在configure時加多一項 --with-iconv就可以了,phpinfo看得到iconv的項。(Linux7.3+Apache4.06+php4.3.2),

下載:ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.8.tar.gz
安裝:
#cp libiconv-1.8.tar.gz /usr/local/src
#tar zxvf lib*
#./configure --prefix=/usr/local/libiconv
#make
#make install
編譯php
#./configure --prefix=/usr/local/php4.3.2 --with-iconv=/usr/local/libiconv/
使用的簡單例子:

1 <?php 
2 echo iconv("gb2312","ISO-8859-1","我們"); 
3 ?>

 

PHP中的mb_convert_encoding與iconv函數介紹

mb_convert_encoding這個函數是用來轉換編碼的。原來一直對程序編碼這一概念不理解,不過現在好像有點開竅了。
不過英文一般不會存在編碼問題,只有中文數據才會有這個問題。比如你用Zend Studio或Editplus寫程序時,用的是gbk編碼,如果數據需要入數據庫,而數據庫的編碼為utf8時,這時就要把數據進行編碼轉換,不然進到數據庫就會變成亂碼。

mb_convert_encoding的用法見官方:
http://cn.php.net/manual/zh/function.mb-convert-encoding.php

做一個GBK To UTF-8

1 < ?php 
2 header("content-Type: text/html; charset=Utf-8"); 
3 echo mb_convert_encoding("妳係我的友仔", "UTF-8", "GBK"); 
4 ?> 

 

再來個GB2312 To Big5

1 < ?php 
2 header("content-Type: text/html; charset=big5"); 
3 echo mb_convert_encoding("你是我的朋友", "big5", "GB2312"); 
4 ?> 

 

不過要使用上面的函數需要安裝但是需要先enable mbstring 擴展庫。

PHP中的另外一個函數iconv也是用來轉換字符串編碼的,與上函數功能相似。

下面還有一些詳細的例子:
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] )
需要先enable mbstring 擴展庫,在 php.ini里將; 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 函數.

1 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. 
2 /* Auto detect encoding from JIS, eucjp-win, sjis-win, then convert str to UCS-2LE */ 
3 $str = mb_convert_encoding($str, “UCS-2LE”, “JIS, eucjp-win, sjis-win”); 
4 /* “auto” is expanded to “ASCII,JIS,UTF-8,EUC-JP,SJIS” */ 
5 $str = mb_convert_encoding($str, “EUC-JP”, “auto”); 

 

例子:

1 $content = iconv(”GBK”, “UTF-8″, $content); 
2 $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 converted string or FALSE on failure.

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.


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM