字符集编码问题

发布于 2024-12-07 02:04:56 字数 437 浏览 0 评论 0原文

所有,我遇到了字符编码的老问题...

我有一个 mySQL 数据库,其字段设置为 utf8_unicode_ci 。我的 PHP 页面作为标头条目 。当我使用简单的表单将带有西里尔字符的数据发布到数据库时,例如“гыдлпоо”,这些字符在文本区域中正确显示,并被添加到正确显示的数据库中。

当从数据库中获取字符时,我的页面只显示一系列问号。我使用了 mb_detect_encoding($content, "UTF-8,ISO-8859-1", true); 并且内容是 UTF-8,但是字符不显示。

我已经四处搜索(包括在 SO 上)并尝试了许多解决方案,但都无济于事 - 任何帮助将不胜感激。

非常感谢

All, Im having the age old problem with character encoding...

I have a mySQL DB with a field set to utf8_unicode_ci. My PHP page as the header entry <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />. When I use a simple form to POST data with Cyrillic characters to the DB, e.g. 'гыдлпоо', the characters display correctly in the textarea, and are added to the DB where they display correctly.

When fetching the characters from the DB, my page only displays a series of question marks. I've used mb_detect_encoding($content, "UTF-8,ISO-8859-1", true); and the content is UTF-8, however the characters do not display.

I've searched around (including on SO) and tried any number of solutions, to no avail- any help would be much appreciated.

Many thanks

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

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

发布评论

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

评论(3

九八野马 2024-12-14 02:04:56

在 mysql_connect() 和 mysql_select_db() 之后执行此操作:

mysql_query("SET NAMES 'utf8'");

Do this right after mysql_connect() and mysql_select_db():

mysql_query("SET NAMES 'utf8'");
夕色琉璃 2024-12-14 02:04:56

从数据库获取数据之前,尝试使用 mysql_set_charset() 函数。

Try using mysql_set_charset() function before fetching data from database.

最初的梦 2024-12-14 02:04:56

您尝试过使用表格吗

enctype="multipart/form-data"


这可能会有所帮助.. 文本在数据库中不必可读。. 保存它们时,它们应该是 utf8 编码的.. 当您再次输出字符串时,您需要它们看起来很好

did you try to use the form with

enctype="multipart/form-data"

?
this might help.. it's not necessary for the text to be readable in your database.. when they are saved they should be utf8 encoded.. you need them to look fine when you output the string again

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