如何准备西里尔文和其他变量以存储到 MySql DB 中? (PHP)
如何准备西里尔文和其他变量以存储到 MySql DB 中? (PHP)
所以我需要非常简单的方法来准备从浏览器 $_GET[string]
接收的变量以存储到数据库中。
这样的事该怎么办呢?
How to prepare Cyrillic and other variables for storing into MySql DB? (PHP)
So I need realy simple way to prepare recived from browser $_GET[string]
variables for storing into DB.
How to do such thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您根本不需要对字符串进行任何修改。但您需要确保数据库和表编码设置为 utf8。通常它们默认为 latin1。
此外,稍后从数据库提取数据时,您需要在进行任何其他查询之前将连接编码设置为 utf8。您可以通过执行查询来完成此操作:
You shouldn't need to make any modifications to the strings at all. But you will want to ensure your database and table encoding are set to utf8. Normally they default to latin1.
Also, when pulling data from the database later on, you will want to set the connection encoding to utf8 before making any other queries. You do this by executing the query: