2025-04-10 23:19:13 +08:00

30 lines
708 B
PHP
Executable File

<?php
/**
* @Author: fm453
* @Date: 2021-09-10 17:49:31
* @Last Modified by: fm453
* @Last Modified time: 2021-09-10 17:52:20
* @Email: fm453@lukegzs.com
*/
$config = [
'components' => [
'db' => [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=127.0.0.1;dbname=dacms',
'username' => 'dacms',
'password' => 'eydnsidc',
'charset' => 'utf8',
'tablePrefix' => '',
'attributes' => [
// use a smaller connection timeout
PDO::ATTR_TIMEOUT => 10,
//使用长链接
PDO::ATTR_PERSISTENT => false,
],
],
],
];
return $config;