In this article i’ll show you about the implementation of a type of Design Pattern, the Singleton.
The Singleton Pattern requires that a class can instantiate at most one object of self, in fact, in the implementation in PHP we have the constructor as private method and we have another “getter” method like getInstance()
that will return an instance of this class.
The implementation of this pattern allows, in this case, to save valuable resources in memory during the execution of the script because is given the same instance connection
. I use PDO driver in this example, below:
<?php
class Connection {
protected static $instance;
private static $dsn = 'mysql:host=localhost;dbname=DBNAME';
private static $username = 'username';
private static $password = 'password';
private function __construct() {
try {
self::$instance = new PDO(self::$dsn, self::$username, self::$password);
} catch (PDOException $e) {
echo "MySql Connection Error: " . $e->getMessage();
}
}
public static function getInstance() {
if (!self::$instance) {
new Connection();
}
return self::$instance;
}
}
?>
Consequently, it is possible to obtain an instance of the connection and run a query in the following way:
<?php
// some previous code...
$connection = Connection::getInstance();
$query = "SELECT * FROM user WHERE id = :user_id";
$statement = $connection->prepare($query);
$statement->bindValue('user_id', $user_id, \PDO::PARAM_INT);
$statement->execute();
$result = $statement->fetchColumn();
// some next code...
?>
This simple configuration allows you to understand how the “singleton design pattern” works and at the same time using it in a concrete way. Implement the database connection in this way is an optimization with compared to instantiate a connection every time you need to run a query, how often do beginning programmers, because instantiating an object is a cost in terms of hardware and software resources.
Not everyone agrees that this is the best implementation possible, however, is definitely a step forward. In a future post I will write about how to integrate the connection with the dependency injection design pattern.