3

1.找到文件夹下的 app/config/service.php 文件
2.添加 ‘charset’ => ‘utf8’ 到数据库连接处

案例:

$di->set(‘db’, function() use ($config) {
    return new DbAdapter(array(
        ‘host’ => $config->database->host,
        ‘username’ => $config->database->username,
        ‘password’ => $config->database->password,
        ‘dbname’ => $config->database->dbname,
        ‘charset’ => ‘utf8’
    ));
});

完美解决乱码


宋小北
4.8k 声望65 粉丝