当前位置:首页 > PHP教程 > php函数 > 列表

iconv() [function.iconv]: Detected an illegal character in

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-04 22:05:45 浏览: 评论:0 

用iconv函数将gb2312转换为utf-8时,怎么有些汉字会出现问题,像"??;字就会提示如下:Notice: iconv() [function.iconv]: Detected an illegal character in input string

解决方法:

  1. iconv('UTF-8''GB2312//IGNORE''??'
  2. iconv('UTF-8''GBK''??'

或者是编码不对,或者增加抑制符@,我们还可以使用其它方法操作,做一个GBK To UTF-8

mb_convert_encoding()使用详解,php代码如下:

  1. header("content-Type: text/html; charset=Utf-8"); 
  2. echo mb_convert_encoding("???S我的友仔""UTF-8""GBK"); 
  3. ?> 

再来个GB2312 To Big5,代码如下:

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

Tags: iconv function iconv Detected

分享到: