如何插入像“Pyrénées, France'”这样的字符串在mysql数据库中?
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
只需插入它并确保数据库的字符集支持您的特殊字符。最好将数据库的字符集切换为 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.
您可以使用
iconv()
来转换字符串到 ASCII。通过使用 TRANSLIT 和 IGNORE 标志,它将尝试替换目标字符集中不支持的字符并删除任何剩余的无效字符。但是,最好将数据库配置为接受 UTF8 字符串,这样您就可以简单地存储数据而不进行修改。
You can use
iconv()
to convert the string to ASCII. By using theTRANSLIT
andIGNORE
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.
像这样插入就可以了。如果你的编码是正确的,那么就不会有任何问题。
您不应在此处删除任何“特殊字符”。
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.
如果您想删除任何特殊字符,可以使用此函数:
它将用空字符替换任何非特殊字符。
If you want to remove any special characters you can use this function:
It will replace any non-special chars with empty char.
如果您为数据库或表使用正确的字符集(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 usehtmlspecialchars()
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.