王总上门按摩后台代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
shangmenanmo/config/database.php

91 lines
3.8 KiB

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\facade\Env;
defined('IN_IA') || define('IN_IA',true);
$dir_path = __DIR__ . '/../../../../data/config.php';
if(file_exists($dir_path) && longbingIsWeiqin())
{
require $dir_path;
}else{
$config = array();
$config['db']['master']['host'] = Env::get('database.hostname', '127.0.0.1');
$config['db']['master']['username'] = Env::get('database.username', 'root');
$config['db']['master']['password'] = Env::get('database.password', '');
$config['db']['master']['port'] = Env::get('database.hostport', '3306');
$config['db']['master']['database'] = Env::get('database.database', '');
$config['db']['master']['charset'] = Env::get('database.charset', 'utf8mb4');
$config['db']['master']['pconnect'] = 0;
$config['db']['master']['tablepre'] = Env::get('database.prefix', 'ims');
}
return [
// 默认使用的数据库连接配置
'default' => Env::get('database.driver', 'mysql'),
// 数据库连接配置信息
'connections' => [
'mysql' => [
// 数据库类型
'type' => 'mysql',
// 服务器地址
'hostname' => $config['db']['master']['host'],
// 数据库名
'database' => $config['db']['master']['database'],
// 用户名
'username' => $config['db']['master']['username'] ,
// 密码
'password' => $config['db']['master']['password'],
// 端口
'hostport' => $config['db']['master']['port'],
// 连接dsn
'dsn' => '',
// 数据库连接参数
'params' => [],
// 数据库编码默认采用utf8
'charset' => 'utf8mb4' ,
// 数据库表前缀
'prefix' => $config['db']['master']['tablepre'] ,
// 数据库调试模式
'debug' => Env::get('APP_DEBUG', false),
// 监听SQL
'trigger_sql' => Env::get('APP_DEBUG', false),
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
'deploy' => 0,
// 数据库读写是否分离 主从式有效
'rw_separate' => false,
// 读写分离后 主服务器数量
'master_num' => 1,
// 指定从服务器序号
'slave_no' => '',
// 是否严格检查字段是否存在
'fields_strict' => true,
// 是否需要进行SQL性能分析
'sql_explain' => false,
// Builder类
'builder' => '',
// Query类
'query' => '',
// 是否需要断线重连
'break_reconnect' => false,
//数据集返回类型
'resultset_type' => 'array',
],
// 更多的数据库配置信息
],
// 自定义时间查询规则
'time_query_rule' => [],
// 自动写入时间戳字段
// 'auto_timestamp' => 'timestamp',
'auto_timestamp' => true,
// 时间字段取出后的默认时间格式
// 'datetime_format' => 'Y-m-d H:i:s',
];