一個專案根據需要會要求連接多個資料庫,那麼在yii2中如何連結多資料庫呢?其實很簡單,在設定檔中稍加配置即可完成。
設定方法如下:
開啟資料庫設定檔common\config\main-local.php,在原先的db設定項下方新增db2,設定第二個資料庫的屬性即可。
實例:
'db' => [ 'class' => 'yii\db\Connection', 'dsn' => 'mysql:host=localhost;dbname=hyii2', //数据库hyii2 'username' => 'root', 'password' => 'pwhyii2', 'charset' => 'utf8', ], 'db2' => [ 'class' => 'yii\db\Connection', 'dsn' => 'mysql:host=localhost;dbname=hyii', //数据库hyii 'username' => 'root', 'password' => 'pwhyii', 'charset' => 'utf8', ],
如上設定就可以完成yii2連接多個資料庫的功能。
相關教學推薦:yii框架
以上是yii2如何連接多個資料庫的詳細內容。更多資訊請關注PHP中文網其他相關文章!