Skip to content

Instantly share code, notes, and snippets.

View roncemer's full-sized avatar

Ron Cemer roncemer

View GitHub Profile
@roncemer
roncemer / FailoverPDO.php
Last active June 13, 2019 22:08
PHP PDO class with lazy connect and fail-over to alternate database servers
<?php
class FailoverPDO extends PDO
{
protected $dsns, $failoverDSNIdx, $username, $passwd, $options, $connectCallback;
public $logConnectFailures = true;
protected $attrs = [];
protected $connectAttempted = false;