字符集

时间:2017-09-23 06:30:49

标签: database wordpress xampp

如何在xampp上将utf8mb4_unicode_520_ci更改为utf8mb4_unicode_ci?我想从一起改变。当我把网站放到现场时,由于" utf8mb4_unicode_520_ci"导致/导出数据会产生问题。如何永久解决? please check the attached screenshot谢谢。

1 个答案:

答案 0 :(得分:0)

我编写了一个转换表及其数据库列的过程。 希望有用。

https://gist.github.com/hosseinm1997/3bbbec3fc574287c752754db0201abfd


更新
Check this screen shot first

  • 复制上述要点中的程序内容。
  • 选择您的数据库。
  • 选择sql选项卡。
  • 将内容粘贴到文本区域。
  • 点击Go。

现在创建了程序。

  • 清除文本区域并将此命令粘贴到:

    changeAllCollations('yourdbname','utf8mb4' , 'utf8mb4_unicode_ci' , true);

  • 指定您的数据库名称字符集校对
  • 点击开始
  • 就是这样。