1

Короткий способ получение синглтона.

<?php
public static function getInstance(){
    return (isset(self::$oInstance))?self::$oInstance:self::$oInstance = new self();
}