Files
SRCMS/Application/Common/Conf/db.php
martinzhou2015 7b3e979fd4 Update
2015-10-06
2015-10-06 20:25:13 +08:00

15 lines
571 B
PHP

<?php
return array(
'DB_TYPE' => 'mysql', // 数据库类型
'DB_HOST' => 'localhost', // 服务器地址
'DB_NAME' => 'srcms', // 数据库名
'DB_USER' => 'root', // 用户名
'DB_PWD' => 'root', // 密码
'DB_PORT' => '3306', // 端口
//'DB_PREFIX' => 'wx_', // 数据库表前缀
'DB_FIELDS_CACHE' => true, // 启用字段缓存
'DB_CHARSET' => 'utf8', // 数据库编码默认采用utf8
);