如何准备西里尔文和其他变量以存储到 MySql DB 中? (PHP)

发布于 2024-08-31 00:24:21 字数 131 浏览 5 评论 0原文

如何准备西里尔文和其他变量以存储到 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 技术交流群。

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

发布评论

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

评论(1

萝莉病 2024-09-07 00:24:21

您根本不需要对字符串进行任何修改。但您需要确保数据库和表编码设置为 utf8。通常它们默认为 latin1。

此外,稍后从数据库提取数据时,您需要在进行任何其他查询之前将连接编码设置为 utf8。您可以通过执行查询来完成此操作:

SET NAMES 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:

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