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’
));
});
完美解决乱码
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。