如何插入像“Pyrénées, France'”这样的字符串在mysql数据库中?

发布于 2024-11-19 14:00:05 字数 67 浏览 0 评论 0原文

如何在 mysql 数据库中插入字符串“Pyrénées, France”。如何使用 php 删除该字符串中的特殊字符?

How can i insert string "Pyrénées, France'" in mysql database. How can i remove special characters form that string using php?

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

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

发布评论

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

评论(5

过期以后 2024-11-26 14:00:05

只需插入它并确保数据库的字符集支持您的特殊字符。最好将数据库的字符集切换为 UTF-8。

Just insert it and make sure that the charset of your database supports your special characters. It might be best to switch the charset of your database to UTF-8.

兔姬 2024-11-26 14:00:05

您可以使用 iconv() 来转换字符串到 ASCII。通过使用 TRANSLIT 和 IGNORE 标志,它将尝试替换目标字符集中不支持的字符并删除任何剩余的无效字符。

但是,最好将数据库配置为接受 UTF8 字符串,这样您就可以简单地存储数据而不进行修改。

You can use iconv() to convert the string to ASCII. By using the TRANSLIT and IGNORE flags it will try to substitute characters not supported in the target charset and strip any remaining invalid characters.

However, better configure your database to accept UTF8 strings so you can simply store the data without modifications.

权谋诡计 2024-11-26 14:00:05

像这样插入就可以了。如果你的编码是正确的,那么就不会有任何问题。
您不应在此处删除任何“特殊字符”。

Just insert it like that. If your encoding is correct, you will have no problems at all.
You should not remove any 'special characters' here.

摇划花蜜的午后 2024-11-26 14:00:05

如果您想删除任何特殊字符,可以使用此函数:

$text = preg_replace('/[^a-zA-Z0-9_ -]/s', '', $text);

它将用空字符替换任何非特殊字符。

If you want to remove any special characters you can use this function:

$text = preg_replace('/[^a-zA-Z0-9_ -]/s', '', $text);

It will replace any non-special chars with empty char.

铁轨上的流浪者 2024-11-26 14:00:05

如果您为数据库或表使用正确的字符集(UTF-8、utf8_general_ci),则无需删除特殊字符。

或者,您可以使用htmlspecialchars()将可能的“恶意”字符转换为HTML实体。

如果您删除特殊字符,我会发现单词最终可能无法生成的问题不再有正确的意义了。

If you use a proper charset for your database or table (UTF-8, utf8_general_ci), you won't have to remove special characters.

Alternatively you could use htmlspecialchars() to convert possibly 'malicious' characters into HTML-Entities.

If you remove special characters, I see the problem that words could end up not making proper sense anymore.

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