[文档]
开发常见问题 - Q:如何修改系统连接 MySQL 的数据库编码?
修改配置文件 config/database.php
[
// ...
'mysql' => [
// ...
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
// ...
],
// ...
],
// ...
];
修改为 UTF8
charset 修改为 utf8
collation 修改为 utf8_unicode_ci
修改为 UTF8MB4
charset 修改为 utf8mb4
collation 修改为 utf8mb4_unicode_c...