On this page
基本配置
基础配置 config/app.php
php
return [
// 应用名称
'app_name' => '仿糗事百科',
// 应用地址
'app_host' => 'http://api.qiushibk.com/',
// 应用调试模式
'app_debug' => true,
...
// 是否强制使用路由
'url_route_must' => true,
...
// 路由是否完全匹配
'route_complete_match' => true,
]
数据库配置 config/database.php
php
return [
// 数据库类型
'type' => 'mysql',
// 服务器地址
'hostname' => '127.0.0.1',
// 数据库名
'database' => 'qiushibkapi',
// 用户名
'username' => 'root',
// 密码
'password' => 'root',
// 端口
'hostport' => '3306',
...
// 数据集返回类型
'resultset_type' => 'collection',
...
]