有时候处理上传的excel表格时,会遇到莫名其妙的无法插入的问题,例如报如下错误:
PDOException: SQLSTATE[HY000]: General error: 1366 Incorrect string value: '\xA0 ...' for column 'user_name' at row 1 in
会发现明明肉眼看上去是空格的东西,在PHP里是\xA0
这样的字符。经过网上查下,得知该空格与普通空格不同:
\xA0属于latin1(ISO/IEC_8859-1)中的扩展字符集字符,代表空白符nbsp(non-breaking space)。
通过打印变量,可以看到字符串前面多出一个b:
该空格通过str_replace(' ','',$str);
等方式也无法替换掉。
解决办法
if(mb_detect_encoding($str, 'UTF-8', true)===false){
$str = iconv('ISO-8859-1','UTF-8',$str);
}
if(mb_detect_encoding($str, ‘UTF-8’, true)===false){
$str = iconv(‘ISO-8859-1′,’UTF-8’,$str);
}
这里你只是将格式转为原本格式,但是替换时并未替换掉,实际替换并不成功