-
Notifications
You must be signed in to change notification settings - Fork 25
1.数据库连接
刘广财 edited this page Mar 22, 2018
·
2 revisions
$capsule = new \Itxiao6\Database\Capsule\Manager;
$capsule->addConnection([
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'dbname',
'username' => 'username',
'password' => 'pass',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
]);
// 设置全局静态可访问
$capsule->setAsGlobal();
// 启动数据库组件
$capsule ->bootEloquent();