QQ扫一扫联系
                             
                        
修改配置文件 config/database.php
<?php
return [
    // ...
    'connections' => [
        // ...
        'mysql' => [
            // ...
            'charset' => 'utf8mb4',
            'collation' => 'utf8mb4_unicode_ci',
            // ...
        ],
        //  ...
    ],
    // ...
];
修改为 UTF8
charset 修改为 utf8
collation 修改为 utf8_unicode_ci
修改为 UTF8MB4
charset 修改为 utf8mb4
collation 修改为 utf8mb4_unicode_ci
