用 iconv('GB2312','UTF-8',$string) 转换编码时,如果 $string 中含有不能转换的字符(如繁体字),则会转换失败,返回 False。
iconv( 'GB2312', 'UTF-8//IGNORE' , $string) 可以忽略失败。