Laravel Change Connection Dynamically(Laravel 动态更改连接)
问题描述
如何更改 laravel 的连接表单控制器,但存储在数据库中的连接信息,如数据库管理器,我的示例:
How to change laravel's connection form controller but the connection information stored at database like database manager, my example :
我的数据库中有一个数据库信息:
I have a databases information on my database :
id, driver, database_name, username, password, host
所以在我的控制器上只需调用:
so at my controller just call :
$connection = Database::find( 1 );
$users = new Users();
$users->setConnection( [
'driver' => $connection->driver,
'host' => $connection->host,
'username' => $connection->username,
'password' => $connection->password
] );
$users = $users->get();
推荐答案
我会在这里找一个帮手.让我们在 app/Helpers/DatabaseConnection.php
中创建一个.
I will go for a helper here. Let's create one in app/Helpers/DatabaseConnection.php
.
namespace AppHelpers;
use Config;
use DB;
class DatabaseConnection
{
public static function setConnection($params)
{
config(['database.connections.onthefly' => [
'driver' => $params->driver,
'host' => $params->host,
'username' => $params->username,
'password' => $params->password
]]);
return DB::connection('onthefly');
}
}
现在我们在控制器的某个地方尝试
And now somewhere in controller we try
use AppHelpersDatabaseConnection;
...
$params = Database::find( 1 );
$connection = DatabaseConnection::setConnection($params);
$users = $connection->select(...);
注意:未经测试.我希望它有效或只是指导您
更多信息:
使用多数据库:https://laravel.com/docs/5.3/database#read-and-write-connections
动态设置配置:https://laravel.com/docs/5.3/configuration#accessing-configuration-values
这篇关于Laravel 动态更改连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 动态更改连接
- 从 PHP 中的输入表单获取日期 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Laravel 仓库 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01