Example #1
0
 public static function getInstance($host, $username, $password, $dbName, $charset, $port)
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self($host, $username, $password, $dbName, $charset, $port);
     }
     return self::$_instance;
 }