boxunphp / mysql
PHP Mysql Client
v2.1.2
2021-10-08 11:52 UTC
Requires
- php: ^7.2
- boxunphp/exception: ^2.0
- boxunphp/instance: ^2.0
Requires (Dev)
- phpunit/phpunit: 8.*
README
PHP Mysql Client
Configure
$config = [ 'master' => [ 'host' => 'mysql-3306', 'port' => 3306, 'username' => 'root', 'password' => '123456', 'dbname' => 'test', 'charset' => 'utf8', ], 'slaves' => [ [ 'host' => 'mysql-3307', 'port' => 3307, 'username' => 'root', 'password' => '123456', 'dbname' => 'test', 'charset' => 'utf8', ], [ 'host' => 'mysql-3308', 'port' => 3308, 'username' => 'root', 'password' => '123456', 'dbname' => 'test', 'charset' => 'utf8', ], ], 'connect_timeout' => 1, 'timeout' => 1, 'is_persistent' => true, ];