法语重音字符解码以进行 SQL 匹配

发布于 2024-11-06 06:23:58 字数 311 浏览 0 评论 0原文

我在匹配法语重音字符时遇到问题(请注意,还将使用其他不同的字符,例如中文、日文)。

当我输入将检查数据库的法国街道名称时,我遇到了错误:

Incorrect string value: '\xE2teau' for column 'street_name' at row 1

对于此名称中的此字符:

Le Château

我已将我的列更改为 utf8_general_ci 并且它仍然向我抛出那个错误。如何“解码”它们以与列匹配?

I'm having a problem with matching against french accented characters (note that other different characters such as chinese, japanese will also be used).

I've ran across an error when I input a french street name that will check the database and I had an error:

Incorrect string value: '\xE2teau' for column 'street_name' at row 1

For this character in this name:

Le Château

I've changed my column to utf8_general_ci and it still throws me that error. How can you "decode" them to match against a column?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆头 2024-11-13 06:23:58

您实际上是在发送 UTF-8 数据,还是在发送 Latin-1 编码数据? MySQL 可能会因 âte 阻塞,因为 â 正在作为字节 E2 传输,并且它期望接下来出现一个具有合适值的字节,但是看到的是 t74 。因此该字符串不是有效的 UTF-8。

在创建查询之前尝试对字符串值使用 utf8_encode()

Are you actually sending UTF-8 data, or are you sending Latin-1 encoded data? MySQL may be choking on âte because â is being transmitted as the byte E2 and it expects a byte with a suitable value to come next, but sees the 74 for t instead. Thus the string is not valid UTF-8.

Try using utf8_encode() on the string value before creating the query?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文