22 lines
493 B
PHP
22 lines
493 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return [
|
||
|
|
//默认控制器和操作名
|
||
|
|
'defaultController' => 'test\controller\Index',
|
||
|
|
'defaultAction' => 'index',
|
||
|
|
|
||
|
|
//根命名空间
|
||
|
|
'namespace' => [
|
||
|
|
'app' => APP_PATH.DIRECTORY_SEPARATOR.'app',
|
||
|
|
'fastphp' => APP_PATH.DIRECTORY_SEPARATOR.'fastphp',
|
||
|
|
],
|
||
|
|
|
||
|
|
// 数据库连接
|
||
|
|
'db' => [
|
||
|
|
'host' => '127.0.0.1',
|
||
|
|
'port' => 3306,
|
||
|
|
'dbname' => 'test',
|
||
|
|
'username' => 'root',
|
||
|
|
'password' => '123456789'
|
||
|
|
],
|
||
|
|
];
|