Files
SRCMS/Application/Common/Conf/db.php

15 lines
571 B
PHP
Raw Normal View History

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