Código PHP:
Class Singleton {
/*
Primero se crea la instancia y se imprime 'Hey',
e inmediatamente luego se ejecuta el constructor,
imprimiendose ' boy!'
*/
public function __construct(){
echo ' boy!';
}
static function arranque(){
static $instancia = 0;
// podria haber chequeado: !is_object($instancia)
if (!($instancia instanceof singleton)){
echo 'Hey';
$instancia = new singleton;
}
}
} #
/* Imprime SOLO UNA VEZ: Hey boy */
$x = singleton :: arranque();
$x = singleton :: arranque();
$x = singleton :: arranque();
Código PHP:
<?
class Database
{
// Store the single instance of Database
private static $m_pInstance;
private function __construct() {
echo 'Test ..';
}
public static function getInstance()
{
if (!self::$m_pInstance)
{
self::$m_pInstance = new Database();
}
return self::$m_pInstance;
}
}