小编典典

使用了mysql utf32_unicode_ci和html charset utf-8,但出现了字符

mysql

我在MySQL字段中有一些法语文本,该文本正确显示在PHPMyAdmin下:

mentionné

该字段编码为utf32_unicode_ci。(这是一个varchar(500), utf32_unicode_ci)。

但是对PHP脚本的调用(调用此参数并以utf-8编码的html输出)返回:

mentionn�

这是我的php html标头的摘录:

<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="fr-FR">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

我怎样才能解决这个问题?


阅读 562

收藏
2020-05-17

共1个答案

小编典典

请确保除了数据库编码外,还请检查以下内容:

  • 文件的utf8编码(js / php)(在超级编辑下,F12:另存为UTF8-NOBOM)
  • utf8 html内容: <meta HTTP-EQUIV="content-type" CONTENT="text/html; charset=utf-8">
  • 数据库连接的utf8: SET character_set_connection = 'utf8'
  • utf8查询结果: SET character_set_results = 'utf8'
  • 您的数据库客户端的utf8: SET character_set_client = 'utf8'
  • mysql表的utf8: ALTER TABLE table CONVERT TO CHARACTER SET utf8;
  • 数据库服务器的utf8:SET character_set_database = 'utf8'SET character_set_server = 'utf8'
  • 在某些情况下,当硬编码的值需要编码时,必须在文件中强制使用utf8。例如,您需要使用来在文件顶部添加注释charset=utf-8,以便超级编辑或您喜欢的编辑器可以检测到它。

rgds。

ps:我不知道utf32,但是在某种程度上逻辑应该是相同的

2020-05-17