亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

php語(yǔ)言

分析php中iconv函數(shù)使用方法

時(shí)間:2024-09-21 19:10:31 php語(yǔ)言 我要投稿
  • 相關(guān)推薦

分析php中iconv函數(shù)使用方法

  最近在做一個(gè)程序,需要用到iconv函數(shù)把抓取來過的utf-8編碼的頁(yè)面轉(zhuǎn)成gb2312, 發(fā)現(xiàn)只有用iconv函數(shù)把抓取過來的數(shù)據(jù)一轉(zhuǎn)碼數(shù)據(jù)就會(huì)無(wú)緣無(wú)故的少一些。跟隨小編去看看吧!

  iconv函數(shù)庫(kù)能夠完成各種字符集間的轉(zhuǎn)換,是php編程中不可缺少的基礎(chǔ)函數(shù)庫(kù)。

  1、下載libiconv函數(shù)庫(kù)http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.9.2.tar.gz;

  2、解壓縮tar -zxvf libiconv-1.9.2.tar.gz;

  3、安裝libiconv

 。onfigure --prefix=/usr/local/iconv

  #make

  #make install

  4、重新編譯php 增加編譯參數(shù)--with-iconv=/usr/local/iconv

  windows下

  最近在做一個(gè)小偷程序,需要用到iconv函數(shù)把抓取來過的utf-8編碼的頁(yè)面轉(zhuǎn)成gb2312, 發(fā)現(xiàn)只有用iconv函數(shù)把抓取過來的數(shù)據(jù)一轉(zhuǎn)碼數(shù)據(jù)就會(huì)無(wú)緣無(wú)故的少一些。  讓我郁悶了好一會(huì)兒,去網(wǎng)上一查資料才知道這是iconv函數(shù)的一個(gè)bug。iconv在轉(zhuǎn)換字符"—"到gb2312時(shí)會(huì)出錯(cuò)

  解決方法很簡(jiǎn)單,就是在需要轉(zhuǎn)成的編碼后加 "//IGNORE"  也就是iconv函數(shù)第二個(gè)參數(shù)后.如下:

  以下為引用的內(nèi)容:

  復(fù)制代碼 代碼如下:

  iconv("UTF-8","GB2312//IGNORE",$data)

  ignore的意思是忽略轉(zhuǎn)換時(shí)的錯(cuò)誤,如果沒有ignore參數(shù),所有該字符后面的字符串都無(wú)法被保存。

  復(fù)制代碼 代碼如下:

  <?php

  echo $str= '你好,這里是賣咖啡!';

  echo '<br />';

  echo iconv('GB2312', 'UTF-8', $str); //將字符串的編碼從GB2312轉(zhuǎn)到UTF-8

  echo '<br />';

  echo iconv_substr($str, 1, 1, 'UTF-8'); //按字符個(gè)數(shù)截取而非字節(jié)

  print_r(iconv_get_encoding()); //得到當(dāng)前頁(yè)面編碼信息

  echo iconv_strlen($str, 'UTF-8'); //得到設(shè)定編碼的字符串長(zhǎng)度

  //也有這樣用的

  $content = iconv("UTF-8","gbk//TRANSLIT",$content);

  ?>

  iconv不是php的默認(rèn)函數(shù),也是默認(rèn)安裝的模塊。需要安裝才能用的。

  如果是windows2000+php,你可以修改php.ini文件,將extension=php_iconv.dll前的";"去掉,同時(shí)你要copy你的原php安裝文件下的iconv.dll到你的winnt/system32下(如果你的dll指向的是這個(gè)目錄)

  在linux環(huán)境下,用靜態(tài)安裝的方式,在configure時(shí)加多一項(xiàng) --with-iconv就可以了,phpinfo看得到iconv的項(xiàng)。(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/

  使用的簡(jiǎn)單例子:

  <?php

  echo iconv("gb2312","ISO-8859-1","我們");

  ?>

  PHP中的mb_convert_encoding與iconv函數(shù)介紹

  mb_convert_encoding這個(gè)函數(shù)是用來轉(zhuǎn)換編碼的。原來一直對(duì)程序編碼這一概念不理解,不過現(xiàn)在好像有點(diǎn)開竅了。

  不過英文一般不會(huì)存在編碼問題,只有中文數(shù)據(jù)才會(huì)有這個(gè)問題。比如你用Zend Studio或Editplus寫程序時(shí),用的是gbk編碼,如果數(shù)據(jù)需要入數(shù)據(jù)庫(kù),而數(shù)據(jù)庫(kù)的編碼為utf8時(shí),這時(shí)就要把數(shù)據(jù)進(jìn)行編碼轉(zhuǎn)換,不然進(jìn)到數(shù)據(jù)庫(kù)就會(huì)變成亂碼。

  mb_convert_encoding的用法見官方:

  http://cn.php.net/manual/zh/function.mb-convert-encoding.php

  做一個(gè)GBK To UTF-8

  < ?php

  header("content-Type: text/html; charset=Utf-8");

  echo mb_convert_encoding("妳係我的友仔", "UTF-8", "GBK");

  ?>

  再來個(gè)GB2312 To Big5

  < ?php

  header("content-Type: text/html; charset=big5");

  echo mb_convert_encoding("你是我的朋友", "big5", "GB2312");

  ?>

  不過要使用上面的函數(shù)需要安裝但是需要先enable mbstring 擴(kuò)展庫(kù)。

  PHP中的另外一個(gè)函數(shù)iconv也是用來轉(zhuǎn)換字符串編碼的,與上函數(shù)功能相似。

  下面還有一些詳細(xì)的例子:

  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 擴(kuò)展庫(kù),在 php.ini里將; extension=php_mbstring.dll 前面的 ; 去掉

  mb_convert_encoding 可以指定多種輸入編碼,它會(huì)根據(jù)內(nèi)容自動(dòng)識(shí)別,但是執(zhí)行效率比iconv差太多;

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

  注意:第二個(gè)參數(shù),除了可以指定要轉(zhuǎn)化到的編碼以外,還可以增加兩個(gè)后綴://TRANSLIT 和 //IGNORE,其中 //TRANSLIT 會(huì)自動(dòng)將不能直接轉(zhuǎn)化的字符變成一個(gè)或多個(gè)近似的字符,//IGNORE 會(huì)忽略掉不能轉(zhuǎn)化的字符,而默認(rèn)效果是從第一個(gè)非法字符截?cái)唷?/p>

  Returns the converted string or FALSE on failure.

  使用:

  發(fā)現(xiàn)iconv在轉(zhuǎn)換字符”—”到gb2312時(shí)會(huì)出錯(cuò),如果沒有ignore參數(shù),所有該字符后面的字符串都無(wú)法被保存。不管怎么樣,這個(gè)”—”都無(wú)法轉(zhuǎn)換成功,無(wú)法輸出。 另外mb_convert_encoding沒有這個(gè)bug.

  一般情況下用 iconv,只有當(dāng)遇到無(wú)法確定原編碼是何種編碼,或者iconv轉(zhuǎn)化后無(wú)法正常顯示時(shí)才用mb_convert_encoding 函數(shù).

  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, eucjp-win, sjis-win, then convert 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函數(shù)時(shí)容易忽略的參數(shù)

  今天在處理抓取內(nèi)容的時(shí)候,當(dāng)采用iconv進(jìn)行編碼轉(zhuǎn)換的時(shí)候,發(fā)現(xiàn)結(jié)果會(huì)中斷,猜是字符集的問題,考慮怎么跳過目標(biāo)字符集不存在的字符,查手冊(cè)發(fā)現(xiàn)iconv的函數(shù)只有三個(gè)參數(shù),好像不行,然后查網(wǎng)上有人說可以,但是很奇怪怎么實(shí)現(xiàn),最后發(fā)現(xiàn)英文描述有說可以加標(biāo)識(shí)到目標(biāo)編碼后面:“TRANSLIT”,很郁悶怎么加呢?原來是先加“//”,真是郁悶,竟然有這樣的設(shè)計(jì)

  原型: $txtContent = iconv("utf-8",'GBK',$txtContent);

  特殊參數(shù):iconv("UTF-8","GB2312//IGNORE",$data)

  兩個(gè)可選的輔助參數(shù):TRANSLIT和IGNORE ,(其中IGNORE 就是說遇到無(wú)法轉(zhuǎn)換的就跳過)。 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.

【分析php中iconv函數(shù)使用方法】相關(guān)文章:

php中iconv函數(shù)使用方法08-23

PHP中iconv函數(shù)知識(shí)11-01

php中in-array函數(shù)用法分析10-03

PHP autoload函數(shù)的使用方法10-22

PHP校驗(yàn)ISBN碼函數(shù)的使用方法10-25

PHP中trait的使用方法08-20

基于PHP中的常用函數(shù)精粹07-19

PHP中trait的使用方法介紹08-07

Excel中COUNTIF函數(shù)的使用方法08-21

Index函數(shù)在excel中的使用方法10-23