版权属于:
社畜猿
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
//use think\facade\Config;
$config = Config::get('database');
$config['connections']['tmp'] = [
'type' => 'mysql',
'hostname' => 'localhost',
'database' => 'test',
'username' => 'root',
'password' => 'root',
'hostport' => 3306,
'params' => [],
'charset' => 'utf8mb4'
];
Config::set($config, 'database');
Db::connect('tmp')->query('select * from t limit 1');
评论