24 lines
504 B
PHP
Executable File
24 lines
504 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @Author: fm453
|
|
* @Date: 2021-09-09 10:32:33
|
|
* @Last Modified by: fm453
|
|
* @Last Modified time: 2021-09-09 10:41:57
|
|
* @Email: fm453@lukegzs.com
|
|
*/
|
|
$config = [
|
|
'components' => [
|
|
'db' => [
|
|
'class' => 'yii\db\Connection',
|
|
'dsn' => 'mysql:host=127.0.0.1;dbname=dacms',
|
|
'username' => 'dacms',
|
|
'password' => 'CiwE5YbLnL7Yw8zs',
|
|
'charset' => 'utf8',
|
|
'tablePrefix' => '',
|
|
],
|
|
],
|
|
];
|
|
|
|
return $config;
|